v2.0.0
flutter_touch_spin
適用於 Flutter 的簡單數字輸入旋轉元件。靈感來自 Bootstrap Touchspin
45喜歡 259近 30 天下載50Pub 分數
平台暫無資料
適用於 Flutter 的簡單數字輸入旋轉器小部件。
{"sdk":"flutter"}^0.17.0^1.0.4{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
Simple number input spinner Widget for Flutter. Inspired by Bootstrap Touchspin
TouchSpin(
min: 5,
max: 100,
step: 5,
value: 10,
displayFormat: NumberFormat.currency(locale: 'en_US', symbol: '\$'),
textStyle: const TextStyle(fontSize: 36),
iconSize: 48.0,
addIcon: const Icon(Icons.add_circle_outline),
subtractIcon: const Icon(Icons.remove_circle_outline),
iconActiveColor: Colors.green,
iconDisabledColor: Colors.grey,
iconPadding: const EdgeInsets.all(20),
onChanged: (val){
print(val);
},
),
| Attribute | Type | Default |
|---|---|---|
value |
num |
1 |
min |
num |
1 |
max |
num |
9999999 |
step |
num |
1 |
displayFormat |
NumberFormat |
|
textStyle |
TextStyle |
TextStyle(fontSize: 24) |
iconSize |
double |
24.0 |
addIcon |
Icon |
Icon(Icons.add) |
subtractIcon |
Icon |
Icon(Icons.remove) |
iconActiveColor |
Color |
Theme.of(context).textTheme.button.color |
iconDisabledColor |
Color |
Theme.of(context).disabledColor |
iconPadding |
EdgeInsetsGeometry |
EdgeInsets.all(4.0) |
onChanged |
ValueChanged<num> |