Flutter divider widget not appearing

前端 未结 5 519
夕颜
夕颜 2021-02-04 01:37

I\'m currently learning how to build apps using the Flutter SDK and Android Studio. My problem is that I need to add a Divider widget between the \'Administrative\' text and the

5条回答
  •  闹比i
    闹比i (楼主)
    2021-02-04 02:39

    Container(
               decoration: BoxDecoration(
                 border: Border(
                   bottom: BorderSide(color: Colors.lightGreen,width: 3.0),
                 ),
               ),
             ) 
    

    Instead of using divider you can use a customized container...

提交回复
热议问题