Skip to content

Instantly share code, notes, and snippets.

@nb312
Created February 15, 2019 14:12
Show Gist options
  • Save nb312/6ad5680d61167a652ac7a02b2111272c to your computer and use it in GitHub Desktop.
Save nb312/6ad5680d61167a652ac7a02b2111272c to your computer and use it in GitHub Desktop.
Widget _snackAction() => SnackBar(
content: Text(
"Test the action in the SnackBar.",
style: TextStyle(
color: TEXT_BLACK,
fontSize: 20,
),
textAlign: TextAlign.center,
),
action: SnackBarAction(
label: "I Know!",
textColor: Colors.white,
disabledTextColor: TEXT_BLACK_LIGHT,
onPressed: () {
print("I know you are testing the action in the SnackBar!");
},
),
backgroundColor: BLUE_LIGHT,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment