Thứ Ba, 19 tháng 11, 2019

Nhìu định dạng chữ trong cùng 1 dòng in flutter

Text.rich(
  TextSpan(
    text: 'Hello ',
    style: TextStyle(fontSize: 50),
    children: <TextSpan>[
      TextSpan(
          text: 'world',
          style: TextStyle(
            decoration: TextDecoration.underline,
          )),
      // can add more TextSpans here...
    ],
  ),
)

Không có nhận xét nào:

Đăng nhận xét

How to reload app in flutter

  Phoenix . rebirth (context);