我正在尝试构建一个屏幕,我想要在容器内放置一个行小部件,该容器具有boxDecoration属性。该怎么做?
我试图将容器放在一个具有boxDecoration属性的大小框中。现在,我想要一个行小部件,以便可以将图像和一些文本彼此相邻放置。但是我不知道做到这一点。
这是我的代码:
SizedBox( 宽度:420.0, 高度:110.0,
child :
Container( //here i want a row widget so that i can put one image and some text
padding: EdgeInsets.only(bottom:10,top:30,left:20),
decoration: BoxDecoration(
border: Border.all(color: Color(0xffD4D4D4),width: 2.0)
),
child : Text("External LTE 4G universal modem antennas (2 or 4) (SMA) finger tighten only",textAlign: TextAlign.justify,style: TextStyle(fontSize: 15,fontWeight: FontWeight.normal),
)
),
),
答案 0 :(得分:0)
您的意思是您想要一个图像和一些文本彼此相邻吗?
尝试一下。
Container(
padding: EdgeInsets.only(bottom:10,top:30,left:20),
decoration: BoxDecoration(
border: Border.all(color: Color(0xffD4D4D4),width: 2.0)
),
child: Row(
children: <Widget>[
Image.asset(), // <-- add the image path here, also don't forget to add the image to pubspec.yaml
Expanded(child: Text("External LTE 4G universal modem antennas (2 or 4) (SMA) finger tighten only",textAlign: TextAlign.justify,style: TextStyle(fontSize: 15,fontWeight: FontWeight.normal),))
],
)
),