Flutter divider widget not appearing

前端 未结 5 568
夕颜
夕颜 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:26

    it was happening to me but I found out that this property solves it: thickness

     child: Divider(
                    color: Colors.teal.shade100,
                    thickness: 1.0,
                  ),
    

提交回复
热议问题