v1.0.0number_selection
酷炫的數字選擇器概念
22喜歡 41近 30 天下載130Pub 分數
AndroidiOSWebmacOSWindowsLinux
Flutter 數字選擇套件
{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
Demo
import 'package:number_selection/number_selection.dart';
NumberSelection(
theme: NumberSelectionTheme(
draggableCircleColor: Colors.blue,
iconsColor: Colors.white,
numberColor: Colors.white,
backgroundColor: Colors.deepPurpleAccent,
outOfConstraintsColor: Colors.deepOrange),
initialValue: 1,
minValue: -10,
maxValue: 10,
direction: Axis.vertical,
withSpring: true,
onChanged: (int value) => print("value: $value"),
enableOnOutOfConstraintsAnimation: true,
onOutOfConstraints: () => print("This value is too high or too low"),
);