gpt4 book ai didi

flutter - 我的 AppBar 在屏幕上的图像后面,或者我看不到它,有什么建议可以在顶部显示我的 AppBar 和 buttomNavigator 并且是半透明的吗?

转载 作者:IT王子 更新时间:2023-10-29 07:18:41 27 4
gpt4 key购买 nike

我的 AppBar 在屏幕上的图像后面或者我看不到它,有什么建议可以在顶部显示我的 AppBar 和 buttomNavigator 并且是半透明的吗?

Widget build(BuildContext context) {
return Scaffold(
body: Stack(
children: <Widget>[
DisplayScreeImages(),
Positioned(
top: 0.0,
left: 0.0,
right: 0.0,
child: AppBar(
title: Text('I am happy'),
),
),
],
),
);
}

最佳答案

您的脚手架应该采用应用栏。

尝试以下操作:

return Scaffold(
appBar: AppBar(
title: Text('I am happy'
),
),
body: Stack(
children: <Widget>[
DisplayScreeImages(),
],
),
),

关于flutter - 我的 AppBar 在屏幕上的图像后面,或者我看不到它,有什么建议可以在顶部显示我的 AppBar 和 buttomNavigator 并且是半透明的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56472016/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com