Friday 30 August 2019

Time Picker widget with spinner instead of a material time picker



flutter_time_picker_spinner

A Flutter widget to set time with spinner instead of material time picker.
12H format


24H format


24H format with second


Custom style


Getting Started

This project is a starting point for a Dart
package,
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.

Props

PROPSTYPESDEFAULTVALUES
timeDateTimeCurrent Time [ DateTime.now() ]
minutesIntervalint1
secondsIntervalint1
is24HourModebooltrue
isShowSecondsboolfalse
isShowSecondsboolfalse
highlightedTextStyleTextStylefalse
normalTextStyleTextStylefalse
itemHeightdouble60.0
itemWidthdouble45.0
spacingdouble20.0
alignmentAlignmentGeometryAlignment.centerRight
isForce2Digitsboolfalse
onTimeChangeTimePickerCallback

Usage

import 'package:flutter_time_picker_spinner/flutter_time_picker_spinner.dart';

Widget widget() {
  return new TimePickerSpinner(
    is24HourMode: false,
    normalTextStyle: TextStyle(
      fontSize: 24,
      color: Colors.deepOrange
    ),
    highlightedTextStyle: TextStyle(
      fontSize: 24,
      color: Colors.yellow
    ),
    spacing: 50,
    itemHeight: 80,
    isForce2Digits: true,
    onTimeChange: (time) {
      setState(() {
        _dateTime = time;
      });
    },
  );
}
Dart

GitHub

A Flutter widget to set time with spinner instead of material time picker — Read More
Latest commit to the master branch on 8-29-2019
Download as zip