aki_datetime_picker 1.0.4 copy "aki_datetime_picker: ^1.0.4" to clipboard
aki_datetime_picker: ^1.0.4 copied to clipboard

aki datetime picker is a versatile and user-friendly date and time picker component for web applications, designed to simplify date and time selection. With its intuitive interface and customizable op [...]

AKI DateTime Picker #

  • A lightweight and cupertino date time picker.
screenshot

Intro #

AKI DateTime Picker consists of three main widgets:

  • AKI DateTime Picker, this widget can make a cupertino picker and to help users to select date and time.

  • AKI Date Picker, this widget can make a cupertino picker and to help users to select only date.

  • AKI Time Picker, this widget can make a cupertino picker and to help users to select only time.

Installation #

Add the following line to pubspec.yaml:

dependencies:
  aki_datetime_picker: ^1.0.4

How to use #

import 'package:aki_datetime_picker/aki_datetime_picker.dart';

basic use #


AKIDateTimePicker(
  onChange: (v) {
    debugPrint(v.toString());
  }),
                    

Customized #


AKIDateTimePicker(
  borderColor: Colors.blue,
  colorMask: Colors.red.withOpacity(0.1),
  selDate: DateTime.now(),
  startYear: 2020,
  endYear: 2025,
  lblYear: "年",
  lblMonth: "月",
  lblDay: "日",
  lblHour: "時",
  lblMin: "分",
  lblColor: Colors.blue,
  textColor: Colors.green,
  onChange: (v) {
    debugPrint(v.toString());
  }),
                    

Feel free to contribute to this project. 🍺 Pull requests are welcome!

There are some tips before creating a PR:

  • Please always create an issue/feature before raising a PR
  • Please always create a minimum reproducible example for an issue
  • Please use the official Dart Extension as your formatter or use flutter format . -l 80 if you are not using VS Code
  • Please keep your changes to its minimum needed scope (avoid introducing unrelated changes)
  • Please follow this git commit convention by adding feat: or fix: to your PR commit
2
likes
130
pub points
0%
popularity

Publisher

verified publisheryuaki.com

aki datetime picker is a versatile and user-friendly date and time picker component for web applications, designed to simplify date and time selection. With its intuitive interface and customizable options, it empowers developers to create seamless user experiences. Users can effortlessly pick dates, times, or both, while developers enjoy the flexibility to tailor its appearance and behavior to suit their specific needs.

Repository (GitHub)
View/report issues

Topics

#datepicker #timepicker #datetimepicker

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, intl

More

Packages that depend on aki_datetime_picker