Last active
September 3, 2018 11:42
-
-
Save rohan20/dd8ddba6d3039032773f7e334e104a98 to your computer and use it in GitHub Desktop.
flutter-localization
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
actions: <Widget>[ | |
IconButton( | |
icon: Icon( | |
Icons.settings, | |
color: Colors.black, | |
), | |
onPressed: () { | |
Navigator.of(context).push( | |
MaterialPageRoute( | |
builder: (context) { | |
return LanguageSelectorPage(); | |
}, | |
), | |
); | |
}, | |
), | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment