Created
February 15, 2019 14:12
-
-
Save nb312/6ad5680d61167a652ac7a02b2111272c 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 _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