Experimental support for background notifications

This commit is contained in:
Christian Pauly 2020-05-05 12:51:38 +02:00
commit 979f75dd0d
7 changed files with 209 additions and 109 deletions

View file

@ -36,6 +36,7 @@ class I18n {
}
static I18n of(BuildContext context) {
if (context == null) return I18n('en');
return Localizations.of<I18n>(context, I18n);
}