* chore: use whitenoise app team and bundle id * chore: add apk commands * chore: rename package from sloth to whitenoise * docs: remove sloth word from readme and agents.md * chore: replace sloth texts with whitenoise * chore: remove unused error screen * docs: copy LICENSE file from whitenoise repo * chore: upgrade version to 0.3.0+15 so that android apk can replace old whitenoise ones * refactor: rename MyApp to WnApp * chore: use new staging bundle id * chore: rename org.parres to IPF * chore: remove .so file * fix: make android signer work after bundle id change * core: replace org.parres with dev.ipf for widgebtook * test: improve coverage
9 lines
285 B
Dart
9 lines
285 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:whitenoise/l10n/generated/app_localizations.dart';
|
|
|
|
export 'package:whitenoise/l10n/generated/app_localizations.dart';
|
|
|
|
extension LocalizationExtension on BuildContext {
|
|
AppLocalizations get l10n => AppLocalizations.of(this);
|
|
}
|