Created
September 16, 2020 11:56
-
-
Save ankesh-kumar/7400abfee2238bd04e90f66d59a7c95b to your computer and use it in GitHub Desktop.
flutter container rounded corner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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