- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用slide_popup_dialog程序包,并在按钮调用中调用此对话框。下面是代码
showSlideDialog(context: context, child: Column(children: <Widget>[
Container(
height: MediaQuery.of(context).size.height*0.50,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: CupertinoDatePicker(
backgroundColor: Colors.grey[300],
onDateTimeChanged: (DateTime newdate) {
print(newdate);
},
),
),
),
Container(
child: RaisedButton(
child: const Text("Confirm"),
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(8.0)),
onPressed: () {
print("Confirm");
}),
)
], mainAxisAlignment: MainAxisAlignment.center));
最佳答案
看来问题出在包本身。如果发现同样的问题也报告在github仓库上。 Here is the link。
我尝试了使用Expanded和SingleChildScrollView小部件给出的解决方案,它可以正常工作。这是修改后的代码。希望能帮助到你。
showSlideDialog(
context: context,
child: Expanded(
child: SingleChildScrollView(
child: Column(children: <Widget>[
Container(
height: MediaQuery.of(context).size.height * 0.50,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: CupertinoDatePicker(
backgroundColor: Colors.grey[300],
onDateTimeChanged: (DateTime newdate) {
print(newdate);
},
),
),
),
Container(
child: RaisedButton(
child: const Text("Confirm"),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0)),
onPressed: () {
print("Confirm");
}),
)
], mainAxisAlignment: MainAxisAlignment.center),
),
));
关于flutter - 向下滑动SlideDialog时,我在底部看到RederFlex溢出错误。您可以提出任何解决此问题的方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61419646/
我正在尝试使用 ksoap2 库版本 3.6.2 向 SOAP API 发出请求。 问题是我收到错误消息: "SoapFault - faultcode: 'soap:Server' faultstr
我是 python 3(和一般的 python)的新手,我决定尝试以我自己的方式制作密码和解密作为个人项目。密码通过生成一个随机数并将字母数值乘以它来工作。它将所有这些相乘的值添加到一个列表中,然后在
我在我的 objective-c 项目中使用第 3 方外部框架。我在这个项目中创建了一个 swift 文件来使用该框架。 在 MyModule-Bridging-Header.h 我导入了外部框架头文
目前 .slcache 目录位于 %USER_HOME%\.grails\.slcache里面有大约 12M 的数据。我在受限的公司环境中工作,这导致我的 Windows 配置文件分配出现问题(遗憾的
因此,我目前正在开发一个利用 Google Places API 的原型(prototype),并且正在努力处理此处显示的 API 文档:https://developers.google.com/p
以下代码: t = paramiko.Transport((hostname, port)) t.connect(username=username, password=passwor
我可以在 GitHub 上对其他人的 Gist 提出 pull 请求吗? 我知道我拥有的 Gist 的 fork 、克隆和提交工作流程。我想知道我是否可以请求用我的 fork 更新别人的 Gist 。
我有下一个方法调用: Formatting.git_log_to_html(`git log --no-merges master --pretty=full #{interval}`) interv
我需要一条 sql 语句(或者如果效率更高的话我可以用 Java 执行)来显示汇总表。当我只显示一列统计信息时,它会按我的预期显示: SELECT refresh_job_detail.refres
我是一名优秀的程序员,十分优秀!