Neil's
1 min readSep 21, 2019

How to draw a horizontal line in Flutter ?

Here is the full code for this example:

All you need is to copy and paste this following code to your main.dart file or your required file of your newly created flutter project.

Padding(
padding:EdgeInsets.symmetric(horizontal:10.0),
child:Container(
height:1.0,
width:130.0,
color:Colours.black,),),

For further information visit flutter_dev official web page…

https://flutter.dev/docs

Neil's
Neil's

No responses yet