How to add a border to a widget in Flutter?

后端 未结 7 633
别那么骄傲
别那么骄傲 2020-11-30 18:38

I\'m using Flutter and I\'d like to add a border to a widget (in this case, a Text widget).

I tried TextStyle and Text, but I didn\'t see how to add a border.

7条回答
  •  长情又很酷
    2020-11-30 19:35

    Use a container with Boxdercoration.

     BoxDecoration(
        border: Border.all(
          width: 3.0
        ),
        borderRadius: BorderRadius.circular(10.0)
      );
    

提交回复
热议问题