在Flutter中到达图像时,断开文字行?

问题描述 投票:0回答:1

我有长长的多行文字,图像在右上角。形象那么,如何检测文字是否到达图像,然后断行?

先谢谢你

flutter text flutter-layout line-breaks longtext
1个回答
0
投票

在Row里面添加widget,Row从左到右开始渲染widget,所以Row里面第一个widget是Text,然后第二个是图片。

    Row(
        children: <Widget>[
          Expanded(
            child: Text('Your Long Text'),
          ),
          Expanded(
              child: Image.asset(
            'assets/images/image.jpg',
            fit: BoxFit.fitWidth,
          ))
        ],
      ),
© www.soinside.com 2019 - 2024. All rights reserved.