zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

flutter 实现文本自动换行

flutter自动 实现 文本 换行
2023-09-14 09:04:29 时间
    Widget dynamicTxtSection = Container(
      margin: const EdgeInsets.only(left:16.0,right: 100.0),
        child: const Flexible(
            child: SelectableText.rich(
      TextSpan(
        children: [
          TextSpan(
              text:
                  "sfwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww"),
        ],
      ),
    )));