作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有3个选项卡的DefaultTabController。选项卡之一是列表。我需要在单击列表项时在其他窗口小部件上更改当前列表。我该怎么做呢?谢谢。标签状态类
class StationState extends State<Stations> {
Widget secondWidget;
@override
Widget build(BuildContext context) {
secondWidget = Styles(this);
return DefaultTabController(
length: 3,
child: Scaffold(
backgroundColor: Color(0xFF000000),
appBar: AppBar(
title: HeaderLogo(),
backgroundColor: Color(0xFF000000),
bottom: TabBar(
indicatorColor: Colors.white,
tabs: [
Tab(
text: 'Favorites',
),
Tab(
text: 'Genres',
),
Tab(
text: 'Networks',
),
],
),
),
body: TabBarView(children: [
Favorites(),
secondWidget,
Networks(),
]),
),
);
;
}
}
最佳答案
请添加您的代码,以帮助您更好。
但是您可以将“回调”传递给列表项,并且单击列表项后,将触发该回调。
像这样
return ListItem(
onPressed: () {
setState((){
//Do what you need on the parent
});
}
);
关于flutter - 如何从子窗口小部件调用setState *,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60385244/
我是一名优秀的程序员,十分优秀!