fixed connection problem

This commit is contained in:
Mehul Ahal 2022-12-22 22:29:37 +01:00 committed by Mguy13
parent 127a09b597
commit 47945dbec7
11 changed files with 218 additions and 196 deletions

View file

@ -109,6 +109,16 @@ class Strings {
args: [],
);
}
/// `Are you sure that you're connected to the internet?`
String get noInternetMessage {
return Intl.message(
'Are you sure that you\'re connected to the internet?',
name: 'noInternetMessage',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<Strings> {