How to change initial language of flutter app?

116
return MaterialApp(
      localizationsDelegates: [
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
      ],
      supportedLocales: [
        const Locale('en'),
        const Locale('ar'),
      ],
      locale: const Locale('ar'),
);
Share:
116
Omar Abdelazeem
Author by

Omar Abdelazeem

Updated on January 01, 2023

Comments

  • Omar Abdelazeem
    Omar Abdelazeem over 1 year

    I am trying to create Arabic flutter app and the default language of flutter app is English , I want the app to start with Arabic language , So how can I achieve this ?