作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建两个小部件。两者都显示带有可以选择/取消选择的按钮的 2 列网格。一个应该有单选逻辑(单选),另一个应该有复选框逻辑(多选)。
这是我尝试在 Flutter 中重新创建的 android 实现:
我尝试使用带有 RadioListTiles 的 GridView,认为我可以用我自己的小部件替换 RadioButton 图标,同时保留逻辑。我看不出有什么办法可以做到这一点。我还意识到 Flutter 中的 GridView 不会自动换行它的子项,导致每个 radio block 仅占据整个单元格的前 10%。
这是我现在的位置:
class RadioSelect extends StatefulWidget {
final QuestionData question;
RadioSelect({this.question});
@override
RadioSelectState createState() => RadioSelectState(question);
}
class RadioSelectState extends State<RadioSelect> {
RadioSelectState(this._question);
final QuestionData _question;
final SliverGridDelegate delegate =
SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2);
int _selectedIndex;
@override
Widget build(BuildContext context) {
return GridView.builder(
gridDelegate: delegate,
padding: EdgeInsets.all(0),
itemCount: _question.selectOptions.length,
itemBuilder: (context, index) {
return RadioListTile(
groupValue: _selectedIndex,
title: Text(_question.selectOptions[index]),
value: index,
onChanged: (newIndex) {
setState(() {
_selectedIndex = newIndex;
});
},
);
},
);
}
}
导致:
我想尽可能地遵循最“Fluttery”的方式。您认为我最好的诉讼理由是什么?
最佳答案
这对我有用。
为了模仿单选按钮的行为,我使用了“ChoiceChip”。 您可以在下面的代码中看到父小部件是一个“行”,但我认为“包裹”作为父小部件可能最适合这个用例。
The proprety shape of the "ChoiceChip" can help to shape it as youneed.
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(
child: ChoiceChip(
avatar: image.asset(
"assets/left.png",
matchTextDirection: false,
width: 20.0),
label: Text('LEFT',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white, fontSize: 20)),
labelPadding:
EdgeInsets.symmetric(horizontal: 50),
selected: choice== 'left',
onSelected: (bool selected) {
setState(() {
choice= selected ? 'left' : null;
});
},
selectedColor: Color(0xFF0D47A1),
shape: ContinuousRectangleBorder(
borderRadius:
BorderRadius.circular(5.0)))),
Expanded(
child: ChoiceChip(
avatar: image.asset(
"assets/right.png",
matchTextDirection: false,
width: 20.0),
label: Text('RIGHT',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white, fontSize: 20)),
labelPadding:
EdgeInsets.symmetric(horizontal: 50),
selected: choice== 'right',
onSelected: (bool selected) {
setState(() {
choice= selected ? 'right' : null;
});
},
selectedColor: Color(0xFF0D47A1),
shape: ContinuousRectangleBorder(
borderRadius:
BorderRadius.circular(5.0))))
]),
结果看起来像这样
关于android - 对自定义小部件实现单选/复选框逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54653292/
我是一名优秀的程序员,十分优秀!