Skip to content

Instantly share code, notes, and snippets.

@plateaukao
Last active August 16, 2020 03:31
Show Gist options
  • Save plateaukao/c2a0062213035e5ca4738a3553d12a67 to your computer and use it in GitHub Desktop.
Save plateaukao/c2a0062213035e5ca4738a3553d12a67 to your computer and use it in GitHub Desktop.
flutter with translation
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