<p>In this example, I'm going to share the code on how to add Border Radius to a Container. Here is how the final output is going to look.</p> <p>);</p> <p>class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); }</p> <p>class _MyAppState extends State { double padValue = 0;</p> <p>@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: Text("Border Radius to Container"), ), body: Container( margin: EdgeInsets.all(100.0), decoration: BoxDecoration( color: Colors.orange, shape: BoxShape.rectangle, borderRadius: BorderRadius.only( topLeft: Radius.circular(25.0), bottomRight: Radius.circular(25.0))), )), ); } }`</p> <p>Thanks, Srikanth</p>
How to add Border Radius to Container in Flutter?
This Article is posted by seven.srikanth at 9/10/2019 5:06:39 PM
Check out our other latest articles
Safearea widget - How to avoid visual overlap with Notch on flutter mobile app?How to convert row of widgets into column of widgets in flutter based on screen size?
How to run Flutter programs from GitHub?
How to get screen orientation in flutter?
NavigationRail example in flutter
Tags: Border Radius to Container; BorderRadius to Container; BoxDecoration in a Container;
Check out our other latest articles
Safearea widget - How to avoid visual overlap with Notch on flutter mobile app?How to convert row of widgets into column of widgets in flutter based on screen size?
How to run Flutter programs from GitHub?
How to get screen orientation in flutter?
NavigationRail example in flutter