- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
How to update state of a ModalBottomSheet in Flutter?
(5 个回答)
3年前关闭。
我试图在底部工作表对话框中显示单选按钮列表,我无法更改单选按钮选择,这是我到目前为止所取得的成果:
final GlobalKey _optionsKey = GlobalKey();
void _showOptions() => showModalBottomSheet(
context: context,
builder: (BuildContext builderContext) {
return Card(
elevation: 4,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
child: Column(
key: _optionsKey,
mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
RadioListTile<int>(
groupValue: _currentContent.contentType,
value: SimpleContent.header,
onChanged: (int value) {
setState(() {
_currentContent.contentType = value;
});
},
title: Text(
"Header",
style: buildTextStyleBlack(14),
),
),
RadioListTile<int>(
groupValue: _currentContent.contentType,
value: SimpleContent.content,
onChanged: (int value) {
setState(() {
_currentContent.contentType = value;
});
},
title: Text(
"Content",
style: buildTextStyleBlack(14),
),
),
RadioListTile<int>(
groupValue: _currentContent.contentType,
value: SimpleContent.bullets,
onChanged: (int value) {
setState(() {
_currentContent.contentType = value;
});
},
title: Text(
"Bullets",
style: buildTextStyleBlack(14),
),
),
RadioListTile(
groupValue: _currentContent.contentType,
value: SimpleContent.image,
onChanged: (int value) {
setState(() {
_currentContent.contentType = value;
});
},
title: Text(
"Image",
style: buildTextStyleBlack(14),
),
),
_buildDoneButton()
],
),
);
});
我尝试在底部表的列上设置全局键,但没有帮助。关于为什么会发生这种情况的任何线索?
最佳答案
有一个 github 存储库,其中包含一些高级 flutter 示例,包括如何在 modals 或 bottom-sheets 中管理输入:
https://github.com/Ephenodrom/Flutter-Advanced-Examples/tree/master/lib/examples/managingInputsWithinModalBottomsheet
您必须使用 StatefullWidgetBuilder。请参阅链接以获得非常好的和详细的解释。
关于android - 在底部工作表栏中显示单选列表磁贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56897882/
我在让我的操作栏显示图标时遇到问题。它显示了我在溢出菜单中设置的文本/标题(三个点),但没有任何操作。这是我的代码,我错过了什么? MainActivity.java public class Mai
我正在尝试在 android 中制作一个动态操作栏,现在我正在尝试像这样在操作栏中进行搜索。 http://developer.android.com/images/ui/actionbar-sear
我正在编写 uiautomator 测试,但我很难弄清楚如何单击我的操作栏图标。 如果我的操作是“始终”显示,则很容易找到并点击。 如果我的操作是显示“从不”,我必须单击菜单,然后从菜单中单击。先点击
我有一个正在寻找特定 URI 的重写规则。当它匹配特定的 URL 时,它会使用正确的文件路径重写它,以便可以找到所需的内容。然后它将协议(protocol)更改为 HTTPS 并允许请求通过。 我有两
我正在为 android 中的 ActionBar 而苦苦挣扎。 这是我的问题:我的操作项没有显示在操作栏中,而是堆叠在操作溢出中,无论我做什么.. 我花了一天的时间寻找解决方案,但我似乎找不到缺少的
我的网络应用程序在 Tomcat 下运行,它非常密集地使用 AJAX 请求,在开发过程中我也必须密集地重新部署网络应用程序。重新部署后,我通常会简单地刷新页面,知道用户 session 已删除,但我总
我是一名优秀的程序员,十分优秀!