作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使我的底部导航栏透明,我尝试了使用color属性的不透明度,但是它不起作用。只是为了让您在附加屏幕截图时有了一个更好的了解
请忽略导航栏上的按钮,我只想透明,下面是我的代码
return Scaffold(
body: Column(
.......
bottomNavigationBar: Container(
color: Colors.white,
padding: EdgeInsets.all(20),
child: Text(
'SUIVANT',
textAlign: TextAlign.center,
style: TextStyle(
fontFamily: 'Karla', fontSize: 20, fontWeight: FontWeight.bold),
),
),
);
最佳答案
最终,经过大量的思考并运用了奇怪的方式,我能够以一种截然不同的方式来做到这一点。我必须完成BottomNavigationBar:属性,因为它不允许被修改。我必须将主列包装在Stack()小部件中
return Scaffold(
body: Stack(
children: <Widget>[
Column(
children: <Widget>[
//.......
/*this is the Container() I had to add in stack after finishing the bottomnavbar*/
Container(
height: MediaQuery.of(context).size.height,
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Container(),
Container(
color: Colors.white.withOpacity(0.9),
width: MediaQuery.of(context).size.width,
padding: EdgeInsets.all(20),
child: Text(
'SUIVANT',
textAlign: TextAlign.center,
style: TextStyle(
fontFamily: 'Karla',
fontSize: 20,
fontWeight: FontWeight.bold),
),
),
],
),
),
],
),
],
),
);
关于flutter - 我想使底部的NavBar透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61141245/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!