在Flutter中创建标签栏并以传递的列表作为参考来浏览各个页面时,这些页面不再报告正确的数据
每个选项卡都包含一个标题和一个字符串列表,该列表显示在每个TabView中,但是浏览页面不会显示正确的列表。
class _TabsFabDemoState extends State<TabsFabDemo> with SingleTickerProviderStateMixin {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: DefaultTabController(
length: choices.length,
child: Scaffold(
appBar: AppBar(
title: const Text('Tabbed AppBar'),
bottom: TabBar(
isScrollable: true,
tabs: choices.map((Choice choice) {
return Tab(
text: choice.title,
icon: Icon(choice.icon),
);
}).toList(),
),
),
body: Column(
children: <Widget>[
GestureDetector(
onTap: (){
choices.add(Choice(title: 'CAR', icon: Icons.directions_car));
setState(() {});
},
child: Container(
height: 100.0,
color: Colors.red,
),
),
Expanded(
child: TabBarView(
children: choices.map((Choice choice) {
return Padding(
padding: const EdgeInsets.all(16.0),
child: Center(child: ListaLinkWidget(tab: choice)),
);
}).toList(),
),
),
],
),
),
),
);
}
}
class Choice {
Choice({this.title, this.icon});
final String title;
final IconData icon;
List<String> liststring = new List();
}
List<Choice> choices = <Choice>[
Choice(title: 'CAR', icon: Icons.directions_car),
Choice(title: 'BICYCLE', icon: Icons.directions_bike),
Choice(title: 'BOAT', icon: Icons.directions_boat),
Choice(title: 'BUS', icon: Icons.directions_bus),
Choice(title: 'TRAIN', icon: Icons.directions_railway),
Choice(title: 'WALK', icon: Icons.directions_walk),
];
class ListaLinkWidget extends StatefulWidget{
Choice tab;
ListaLinkWidget({Key key, this.tab}) : super(key: key);
@override
ListaLinkWidgetState createState() => ListaLinkWidgetState();
}
class ListaLinkWidgetState extends State<ListaLinkWidget> {
@override
void initState() {
super.initState();
widget.tab.liststring.add("a");
}
@override
Widget build(BuildContext context) {
return Container(
color: Colors.red,
child: Text(
widget.tab.liststring.toString()
),
);
}
}
我希望每个页面都有其自己的列表,并且不要干扰其他页面的列表,这是什么意思?
widget的init块被调用了很多次,如何使它仅被调用一次?
谢谢
答案 0 :(得分:0)
步骤1:更改Choice类,添加this.liststring
,删除= new List()
class Choice {
Choice({this.title, this.icon, this.liststring});
final String title;
final IconData icon;
List<String> liststring; //= new List();
}
第2步:选择添加所需的列表字符串
List<Choice> choices = <Choice>[
Choice(title: 'CAR', icon: Icons.directions_car, liststring: ["car"]),
Choice(title: 'BICYCLE', icon: Icons.directions_bike, liststring: ["bike"]),
步骤3:删除widget.tab.liststring.add("a");
第4步:OnTap需要更改choices.add与列表字符串
GestureDetector(
onTap: () {
_counter = _counter + 1;
choices.add(Choice(
title: 'New ${_counter}',
icon: Icons.directions_car,
liststring: ['List ${_counter}']));
setState(() {});
},
完整代码
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: tabDemo(),
);
}
}
class tabDemo extends StatefulWidget {
@override
_tabDemoState createState() => _tabDemoState();
}
class _tabDemoState extends State<tabDemo> with SingleTickerProviderStateMixin {
int _counter = 0;
@override
Widget build(BuildContext context) {
return MaterialApp(
home: DefaultTabController(
length: choices.length,
child: Scaffold(
appBar: AppBar(
title: const Text('Tabbed AppBar'),
bottom: TabBar(
isScrollable: true,
tabs: choices.map((Choice choice) {
return Tab(
text: choice.title,
icon: Icon(choice.icon),
);
}).toList(),
),
),
body: Column(
children: <Widget>[
GestureDetector(
onTap: () {
_counter = _counter + 1;
choices.add(Choice(
title: 'New ${_counter}',
icon: Icons.directions_car,
liststring: ['List ${_counter}']));
setState(() {});
},
child: Container(
height: 100.0,
color: Colors.red,
),
),
Expanded(
child: TabBarView(
children: choices.map((Choice choice) {
return Padding(
padding: const EdgeInsets.all(16.0),
child: Center(child: ListaLinkWidget(tab: choice)),
);
}).toList(),
),
),
],
),
),
),
);
}
}
class Choice {
Choice({this.title, this.icon, this.liststring});
final String title;
final IconData icon;
List<String> liststring; //= new List();
}
List<Choice> choices = <Choice>[
Choice(title: 'CAR', icon: Icons.directions_car, liststring: ["car"]),
Choice(title: 'BICYCLE', icon: Icons.directions_bike, liststring: ["bike"]),
/* Choice(title: 'BOAT', icon: Icons.directions_boat),
Choice(title: 'BUS', icon: Icons.directions_bus),
Choice(title: 'TRAIN', icon: Icons.directions_railway),
Choice(title: 'WALK', icon: Icons.directions_walk),*/
];
class ListaLinkWidget extends StatefulWidget {
Choice tab;
ListaLinkWidget({Key key, this.tab}) : super(key: key);
@override
ListaLinkWidgetState createState() => ListaLinkWidgetState();
}
class ListaLinkWidgetState extends State<ListaLinkWidget>
with AutomaticKeepAliveClientMixin<ListaLinkWidget> {
@override
void initState() {
super.initState();
//widget.tab.liststring.add("a");
print("created");
}
@override
bool get wantKeepAlive => true;
@override
Widget build(BuildContext context) {
return Container(
color: Colors.red,
child: Text(widget.tab.liststring.toString()),
);
}
}