52 lines
1.2 KiB
Dart
52 lines
1.2 KiB
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
import '../../../core/components/spaces.dart';
|
||
|
|
import '../../../core/constants/colors.dart';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
class AddData extends StatelessWidget {
|
||
|
|
final String title;
|
||
|
|
final VoidCallback onPressed;
|
||
|
|
|
||
|
|
const AddData({
|
||
|
|
super.key,
|
||
|
|
required this.title,
|
||
|
|
required this.onPressed,
|
||
|
|
});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return GestureDetector(
|
||
|
|
onTap: onPressed,
|
||
|
|
child: Container(
|
||
|
|
padding: const EdgeInsets.all(16.0),
|
||
|
|
decoration: ShapeDecoration(
|
||
|
|
shape: RoundedRectangleBorder(
|
||
|
|
side: const BorderSide(width: 1, color: AppColors.card),
|
||
|
|
borderRadius: BorderRadius.circular(19),
|
||
|
|
),
|
||
|
|
),
|
||
|
|
child: Column(
|
||
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
||
|
|
children: [
|
||
|
|
const Icon(
|
||
|
|
Icons.add,
|
||
|
|
color: AppColors.primary,
|
||
|
|
),
|
||
|
|
const SpaceHeight(8.0),
|
||
|
|
Text(
|
||
|
|
title,
|
||
|
|
style: const TextStyle(
|
||
|
|
color: AppColors.primary,
|
||
|
|
fontSize: 16,
|
||
|
|
fontWeight: FontWeight.w600,
|
||
|
|
),
|
||
|
|
),
|
||
|
|
],
|
||
|
|
),
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|