所以我把这个容器包裹在一个容器里。
父容器有全屏背景图片,子容器有带边框的图标,隐藏在父容器背景图片后面。
为什么会这样?颤振中有类似z-index的东西吗?
我知道我可以使用其他小部件来实现我的目标,但我不熟悉颤振并试图理解这些概念。
因此,如果有人能告诉我这背后的原因以及修复方法,我将不胜感激。
home: SafeArea(
child: Scaffold(
//body: WeatherScreen()
body: Container(
height: double.infinity,
width: double.infinity,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/clear-day.png" ),
fit: BoxFit.cover
)
),
child: Container(
height: double.infinity,
width: double.infinity,
alignment: Alignment.center,
child: Ink(
decoration: BoxDecoration(
border: Border.all(width: 4)
),
child: InkWell(
child: Icon(
Icons.verified_user
),
),
),
),
),
),
),