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,),),