Skip to content

Instantly share code, notes, and snippets.

@nhancv
Created July 11, 2021 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhancv/9d2f0ed25a23638385252b0ba66483cb to your computer and use it in GitHub Desktop.
Save nhancv/9d2f0ed25a23638385252b0ba66483cb to your computer and use it in GitHub Desktop.
Flutter get intl message by key manually
String get btnSkip {
return Intl.message(
// fallback text
context.strings.btnSkip,
// lang key
name: 'btnSkip',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment