dayselection 1.0.0+2
dayselection: ^1.0.0+2 copied to clipboard
A Flutter package that provides a customizable day-of-week selector widget, useful for schedules, reminders, and calendar apps.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add dayselectionWith Flutter:
$ flutter pub add dayselectionThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
dayselection: ^1.0.0+2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:dayselection/cubit/date_range_cubit.dart';
import 'package:dayselection/cubit/date_range_state.dart';
import 'package:dayselection/main.dart';
import 'package:dayselection/models/date_selection.dart';
import 'package:dayselection/screens/date_range_screen.dart';
import 'package:dayselection/screens/selected_days_screen.dart';
import 'package:dayselection/widgets/date_cell.dart';
import 'package:dayselection/widgets/half_day_selector.dart';
import 'package:dayselection/widgets/selected_range_calendar.dart';