gpt4 book ai didi

flutter - 如何从子窗口小部件调用setState *

转载 作者:行者123 更新时间:2023-12-03 04:57:10 28 4
gpt4 key购买 nike

我有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/

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