tbib_monthly_date_picker 1.0.0 copy "tbib_monthly_date_picker: ^1.0.0" to clipboard
tbib_monthly_date_picker: ^1.0.0 copied to clipboard

Flutter Date Picker Library that provides a days of month.

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),
          )),
        ),
      ),
    );
  }
}

5
likes
135
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter Date Picker Library that provides a days of month.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, font_awesome_flutter, intl

More

Packages that depend on tbib_monthly_date_picker