码迷,mamicode.com
首页 > 其他好文 > 详细

flutter numberpicker

时间:2019-07-06 00:55:10      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:引入   set   size   onchange   picker   get   tst   new   text   

引入以来后直接这样写代码就好了!当成一个widget使用:

Column(

mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
NumberPicker.integer(
initialValue: _currentValue,
minValue: 0,
maxValue: 100,
onChanged: (newValue) =>
setState(() => _currentValue = newValue)),
Text("Current number: $_currentValue"),
],
),

flutter numberpicker

标签:引入   set   size   onchange   picker   get   tst   new   text   

原文地址:https://www.cnblogs.com/braveheart007/p/11141194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!