0 purchases
tbib monthly date picker
TBIB_MONTHLY_DATE_PICKER #
This package for Date picker monthly and change month and then select day
How to use
lass MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.blue,
body: Center(
child: SizedBox(
child: DatePickerTimeLine(
controller: DatePickerController(),
datePickerConfig: const DatePickerConfig(
dateTextStyle: TextStyle(
color: Colors.white,
fontSize: 15,
),
dayTextStyle: TextStyle(
color: Colors.white,
fontSize: 20,
),
dateSelectedStyle: TextStyle(
color: Colors.white,
fontSize: 25,
),
selectionColor: Colors.cyan,
selectedTextColor: Colors.white),
)),
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.