Created
January 31, 2019 16:13
-
-
Save nb312/9b8f29ac9fbb9afa246fbffc0da02b45 to your computer and use it in GitHub Desktop.
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
| Widget _shapeDialog() => SimpleDialog( | |
| title: Text( | |
| "Be careful!", | |
| textAlign: TextAlign.center, | |
| ), | |
| children: <Widget>[ | |
| Text( | |
| "If you write a message, you should care about the message.", | |
| textAlign: TextAlign.center, | |
| ), | |
| ], | |
| backgroundColor: BLUE_LIGHT, | |
| elevation: 4, | |
| shape: StadiumBorder( | |
| side: BorderSide( | |
| style: BorderStyle.none, | |
| ), | |
| ), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment