Skip to content

Instantly share code, notes, and snippets.

@nb312
Created January 31, 2019 16:13
Show Gist options
  • Select an option

  • Save nb312/9b8f29ac9fbb9afa246fbffc0da02b45 to your computer and use it in GitHub Desktop.

Select an option

Save nb312/9b8f29ac9fbb9afa246fbffc0da02b45 to your computer and use it in GitHub Desktop.
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