Skip to content

Instantly share code, notes, and snippets.

@ankesh-kumar
Created September 16, 2020 11:56
Show Gist options
  • Save ankesh-kumar/7400abfee2238bd04e90f66d59a7c95b to your computer and use it in GitHub Desktop.
Save ankesh-kumar/7400abfee2238bd04e90f66d59a7c95b to your computer and use it in GitHub Desktop.
flutter container rounded corner
Container
(
decoration: BoxDecoration(
border: Border.all(
color:Colors.lightGreen,
),
color: Colors.white,
borderRadius: BorderRadius.only(topLeft: Radius.circular(20),topRight: Radius.circular(20)),
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment