Answers for "localization in flutter"

0

localization in flutter

import 'package:flutter_localizations/flutter_localizations.dart';
Posted by: Guest on May-29-2021
0

localization flutter

return const MaterialApp(
  title: 'Localizations Sample App',
  localizationsDelegates: [
    GlobalMaterialLocalizations.delegate,
    GlobalWidgetsLocalizations.delegate,
    GlobalCupertinoLocalizations.delegate,
  ],
  supportedLocales: [
    Locale('en', ''), // English, no country code
    Locale('es', ''), // Spanish, no country code
  ],
  home: MyHomePage(),
);
Posted by: Guest on October-24-2021
0

localization in flutter

import 'package:flutter_gen/gen_l10n/app_localizations.dart';
Posted by: Guest on March-03-2022

Browse Popular Code Answers by Language