如果你有兴趣 你可以关注一下公众号 biglead 来获取最新的学习资料。
本文实现的效果:
在 Flutter 中,是通过 CupertinoSlidingSegmentedControl 来实现
//当前选中的索引
int _currentIndex = 0;
buildSlidSegment() {
return Container(
margin: EdgeInsets.only(top: 80),
width: 300,
child: CupertinoSlidingSegmentedControl(
//子标签
children: <int, Widget>{
0: Text("全部"),
1: Text("收入"),
2: Text("支出 "),
},
//当前选中的索引
groupValue: _currentIndex,
//点击回调
onValueChanged: (int index) {
print("当前选中 $index");
setState(() {
_currentIndex = index;
});
},
),
);
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。