Skip to content

Instantly share code, notes, and snippets.

@tianhaoz95
Created March 19, 2020 05:43
Show Gist options
  • Save tianhaoz95/7dc3460b4e8b1f55c5f1d7233868a5b4 to your computer and use it in GitHub Desktop.
Save tianhaoz95/7dc3460b4e8b1f55c5f1d7233868a5b4 to your computer and use it in GitHub Desktop.
example of using i18n
class HomeScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(AppLocalizations.of(context).title),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment