gpt4 book ai didi

date - 如何在 flutter 中创建计时器选择器?

转载 作者:IT老高 更新时间:2023-10-28 12:34:25 29 4
gpt4 key购买 nike

是否可以像在 iOS 中那样在 Flutter 中创建持续时间计时器?

示例 duration picker

最佳答案

有一个 CupertinoTimePicker 小部件可以做到这一点

看看这个

class Cupert extends StatefulWidget {

@override
_CupertState createState() => _CupertState();
}

class _CupertState extends State<Cupert> {
var value = "";

@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Column(
children: <Widget>[
Expanded(
child: Center(
child: Text(
"$value"
),
),
),
CupertinoTimerPicker(
mode: CupertinoTimerPickerMode.hm,
onTimerDurationChanged: (value){
setState(() {
this.value = value.toString();
});
},
),
],
),
),
);
}
}

关于date - 如何在 flutter 中创建计时器选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48735370/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com