我正在尝试根据特定条件动态生成一组小部件。在这种情况下,我试图生成一个 RadioTiles 列表
这就是我试图生成的方式
List _listings = new List();
Widget _getListings() {
// TODO this will accept json objects in order to display the data
List listings = new List();
int i = 0;
for (i = 0; i < 5; i++) {
listings.add(
new RadioListTile<SingingCharacter>(
title: const Text('Lafayette'),
value: SingingCharacter.lafayette,
groupValue: _character,
onChanged: (SingingCharacter value) {
setState(() {
_character = value;
});
},
),
);
}
// return listings;
}
Run Code Online (Sandbox Code Playgroud)
我试图在这样的有状态小部件中显示它:
return new SafeArea(
child: Column(children: <Widget>[
new Padding(
padding: const EdgeInsets.all(20.0),
child: new Text(
"Verify and Select a Single Listing?",
style: _textStyle,
),
),
ListView(
shrinkWrap: true,
padding: const EdgeInsets.all(20.0),
children: <Widget>[
_getListings(),
],
),
]));
Run Code Online (Sandbox Code Playgroud)
问题是列表的值为空,因此我无法在屏幕上显示任何小部件。
任何见解都会有用。
谢谢,
编辑 :
我不确定这是否是动态创建小部件的最佳方式。
Dur*_*rdu 14
以下是您的代码的一些更新:
Widget build(BuildContext context) {
return Scaffold(body: SafeArea(
child: Container(child: Column(children: <Widget>[
Padding(
padding: const EdgeInsets.all(20.0),
child: Text("Verify and Select a Single Listing?",),
),
Expanded(child: ListView(
padding: const EdgeInsets.all(20.0),
children: _getListings(), // <<<<< Note this change for the return type
),
)
])
)));
}
List _listings = new List();
List<Widget> _getListings() { // <<<<< Note this change for the return type
List listings = List<Widget>();
int i = 0;
for (i = 0; i < 5; i++) {
listings.add(
RadioListTile<String>(
title: const Text('Lafayette'),
value: "c",
groupValue: "x",
onChanged: (_) {
},
),
);
}
return listings;
}
Run Code Online (Sandbox Code Playgroud)
上面需要考虑的一些事情:
我已经对代码进行了更改,以便编译并用于此答案。
_listings未使用new在创建新对象时删除关键字(新版本的 dart 能够处理此问题)结果:
| 归档时间: |
|
| 查看次数: |
17877 次 |
| 最近记录: |