Bisher kann ich dies nicht reproduzieren.
Code: Select all
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
Code: Select all
Align(
alignment: Alignment.centerRight,
child: ElevatedButton(
child: Padding(
padding:
EdgeInsets.symmetric(horizontal: 8),
child: Text(
'Logout',
style: TextStyle(color: Colors.white),
),
),
onPressed: () {
_logout();
},
),
)