gpt4 book ai didi

flutter 如何创建从右到左 (rtl) 应用程序

转载 作者:行者123 更新时间:2023-12-04 07:20:34 24 4
gpt4 key购买 nike

我使用 GetX 在 Flutter 中启动了一个应用程序。我想创建一个 rtl 应用程序,我使用 flutter_localizations 包作为 this post .
这是我的 main() 代码

void main() => runApp(
GetMaterialApp(
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: [
Locale('fa', 'IR'),
],
locale: Locale('fa', 'IR'),
home: HomeScreen(),
),
);
这是我的主屏幕代码
return Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Text(
"Some Text",
style: TextStyle(
color: Colors.black,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
),
);
正如你在这张图片中看到的,调试横幅已移至左侧,但文本钢在左侧
enter image description here

最佳答案

您的应用程序正确无误,您的问题是当前的正文小部件,将其作为正文小部件进行测试:

body: SafeArea(
child: Row(
mainAxisSize: MainAxisSize.max,
children: [
Text("Some Text"),
],
),
),

关于flutter 如何创建从右到左 (rtl) 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68528499/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com