import 'package:flutter/material.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; class AppLocalizations { static const Iterable> localizationsDelegates = [ // ... app-specific localization delegate[s] here // S.delegate, GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, GlobalCupertinoLocalizations.delegate ]; static const List supportedLocales = [ const Locale("en", "US") ]; }