Some of my text in iOS flutter app appearing as gibberish in production, anyone face this issue before? so far I'm not able to reproduce this.
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.24.3, on macOS 15.1.1 24B91 darwin-arm64)
[✓] Android toolchain - develop for Android devices (Android SDK version 33.0.2)
[✓] Xcode - develop for iOS and macOS (Xcode 16.1)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2024.2)
[✓] VS Code (version 1.96.4)
[✓] Connected device (4 available)
[✓] Network resources
Align(
alignment: Alignment.centerRight,
child: ElevatedButton(
child: Padding(
padding:
EdgeInsets.symmetric(horizontal: 8),
child: Text(
'Logout',
style: TextStyle(color: Colors.white),
),
),
onPressed: () {
_logout();
},
),
)