gpt4 book ai didi

tabs - Flutter 中的片段

转载 作者:IT王子 更新时间:2023-10-29 06:38:57 26 4
gpt4 key购买 nike

我正在开发 Flutter 应用程序并尝试向我的应用程序添加一个分割。是否可以在 Flutter 中实现它。所以我想要 2 个按钮的 2 个不同的小部件。类似于Flutter中的TabBar或者原生应用中的Segment

enter image description here

最佳答案

CupertinoSegmentedControl 是你的 friend

示例(在 StatefulWidget 中):

  int segmentedControlValue = 0;

Widget _segmentedControl() => Container(
width: 500,
child: CupertinoSegmentedControl<int>(
selectedColor: Colors.blue,
borderColor: Colors.white,
children: {
0: Text('All'),
1: Text('Recommendations'),
},
onValueChanged: (int val) {
setState(() {
segmentedControlValue = val;
});
},
groupValue: segmentedControlValue,
),
);

enter image description here

关于tabs - Flutter 中的片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49364886/

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