在文字旁边显示图像

时间:2019-03-23 07:14:57

标签: flutter flutter-layout

如何在flutter应用程序中使文本旁边的图像代码如下图所示: image beside text

1 个答案:

答案 0 :(得分:0)

您需要使用Row小部件来并排显示图像和文本,问题完全在于图像宽度,因此您可以将图像作为背景图像来避免图像拉伸尺寸问题,请参见以下示例:

Row(
children: <Wigdet>[
  Container(
   width:100,
   height: 100,
   decoration: BoxDecoration(
     image: ImageDecoration: NetworkImage("youImageLink")
   )
  ),
  Text("your text")
]
);