update
This commit is contained in:
parent
27f00e43a7
commit
3572f90b24
24 changed files with 290 additions and 257 deletions
|
|
@ -3,10 +3,11 @@ import 'package:google_fonts/google_fonts.dart';
|
|||
import 'package:gap/gap.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
|
||||
// ignore: must_be_immutable
|
||||
class DatePickerWidget extends StatefulWidget {
|
||||
final String label;
|
||||
final TextEditingController controller;
|
||||
DateTime value;
|
||||
late DateTime value;
|
||||
|
||||
DatePickerWidget({super.key, required this.label, required this.controller, required this.value});
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,8 @@ class MenuWidget extends StatelessWidget {
|
|||
const Color.fromRGBO(104, 156, 59, 0.8),
|
||||
];
|
||||
|
||||
MenuWidget({super.key, required this.text, required this.description, this.icon, this.onPressed, this.color, this.width});
|
||||
MenuWidget(
|
||||
{super.key, required this.text, required this.description, this.icon, this.onPressed, this.color, this.width});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue