Last active
August 16, 2020 03:31
-
-
Save plateaukao/c2a0062213035e5ca4738a3553d12a67 to your computer and use it in GitHub Desktop.
flutter with translation
This file contains 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
class _MyHomePageState extends State<MyHomePage> { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
// Replace the title line with the following: | |
title: Text(AppLocalizations.of(context).hello_world), | |
), | |
// The rest of the widget tree. | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment