Custom Time Interval Picker in Flutter

You are currently viewing Custom Time Interval Picker in Flutter
Custom Time Interval Picker in Flutter

Custom Time Interval Picker in Flutter – A Custom Time Interval Select Dropdown for getting a Time Range.

Installation

1. Depend On It

Add this to pubspec.yaml file

    dependencies:
        time_interval_picker: ^[latest_version]

2. Install it

Run the following command in shell

    flutter pub get

3. Import It

Import the package in your Dart Code

    import 'package:time_interval_picker/time_interval_picker.dart';    

Base Usage

    TimeIntervalPicker(
        endLimit: null,
        startLimit: null,
        onChanged: (DateTime? startTime, DateTime? endTime, bool isAllDay) {},
    ),

License

The project is licensed under MIT License.

Learn more about date picker click here

Credit

This project is developed by Waheguru-Anurag
Download this project from the below link.
https://github.com/Waheguru-Anurag/time_interval_picker/archive/refs/heads/main.zip
You can visit the source page from the below link:
https://github.com/Waheguru-Anurag/time_interval_picker

Spread the love
See also  Login, Signup, Logout TextField using Firebase in Flutter

Leave a Reply