Flutter divider widget not appearing

前端 未结 5 525
夕颜
夕颜 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条回答
  •  南笙
    南笙 (楼主)
    2021-02-04 02:27

    If you want to draw line for the Widget Views, Try using the BoxDecoration as like in below example

    child: new Container(
      decoration: new BoxDecoration(
       border: Border(
        top: BorderSide(width: 1.0, color: Colors.grey),
        left: BorderSide(width: 1.0, color: Colors.grey),
        right: BorderSide(width: 1.0, color: Colors.grey),
        bottom: BorderSide(width: 1.0, color: Colors.grey),),
     );
    
     child: new Row( 
             ....
     ),
    )
    

提交回复
热议问题