Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建阿拉伯语颤动应用程序,颤动应用程序的默认语言是英语,我希望应用程序以阿拉伯语开头,那么我该如何实现呢?
return MaterialApp( localizationsDelegates: [ GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, ], supportedLocales: [ const Locale('en'), const Locale('ar'), ], locale: const Locale('ar'), );