我正在尝试将第二个容器(带有文本的容器)放在底部,并且我想使“黑色不透明度”与第一个容器(图像)的宽度相同,并将文本保留在中间。 >
child: Stack(
children: <Widget>
[
Container
(
padding: EdgeInsets.fromLTRB(0,0,0,0),
child: new Image
(
image: new AssetImage('images/99.jpg'),
fit: BoxFit.cover
)
),
new Positioned(
bottom: 0,
child: Container
(
padding: EdgeInsets.all(7.0),
color: Colors.black.withOpacity(0.3),
child: Text("The text", style: TextStyle(color: Colors.white, fontSize: 25.0), textAlign: TextAlign.center,),
),
),
我正在尝试将第二个容器(带有文本的容器)放在底部,我想使“黑色不透明度”与第一个容器(图像)的宽度相同,并将文本保留在中间。 ..
我想,您正在搜索-