FlutterUnit icon indicating copy to clipboard operation
FlutterUnit copied to clipboard

+ 0001 文字后面跟着个icon(如图黄色框),如何做到文字短的时候跟随,文字长的时候,居右? #4

Open toly1994328 opened this issue 4 years ago • 2 comments

image

toly1994328 avatar May 15 '20 01:05 toly1994328

    var text=Text("张风捷特烈"*10,overflow: TextOverflow.ellipsis,maxLines: 1,);
    var box=Container(
      width: 20,
      height: 20,
      color: Colors.blue,
    );

    return Container(
      width: 300,
      height: 100,
      color: Colors.cyanAccent.withAlpha(11),
      child: Row(
        crossAxisAlignment: CrossAxisAlignment.center,
        children: <Widget>[
       text, box,
      ],),
    );

toly1994328 avatar May 15 '20 01:05 toly1994328

791571985718_ pic 821571985844_ pic

toly1994328 avatar May 15 '20 01:05 toly1994328