FLUTTER ECOSYSTEM

icemanbsi/flutter_time_picker_spinner

一个 Flutter 小部件,使用旋转器代替 Material 时钟选择器来设置时间

flutter_time_picker_spinner 项目封面
Stars
39
Forks
67
最近推送(UTC)
2024年2月17日
项目状态
未归档
Bobby Stenly Irawan GitHub avatar
GITHUB User

Bobby Stenly Irawan ↗

Bali
语言DartRubyObjective-CShellJava

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

flutter_time_picker_spinner

Time Picker widget with spinner instead of a material time picker.

12H format

https://raw.githubusercontent.com/icemanbsi/flutter_time_picker_spinner/master/doc/time_picker_1.gif
24H format

https://raw.githubusercontent.com/icemanbsi/flutter_time_picker_spinner/master/doc/time_picker_2.gif
24H format with second

https://raw.githubusercontent.com/icemanbsi/flutter_time_picker_spinner/master/doc/time_picker_3.gif
Custom style

https://raw.githubusercontent.com/icemanbsi/flutter_time_picker_spinner/master/doc/time_picker_4.gif

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

props types defaultValues
time DateTime Current Time [ DateTime.now() ]
minutesInterval int 1
secondsInterval int 1
is24HourMode bool true
isShowSeconds bool false
isShowSeconds bool false
highlightedTextStyle TextStyle false
normalTextStyle TextStyle false
itemHeight double 60.0
itemWidth double 45.0
spacing double 20.0
alignment AlignmentGeometry Alignment.centerRight
isForce2Digits bool false
onTimeChange TimePickerCallback

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