SwiftyFlow

Results 21 comments of SwiftyFlow

If I don't give the full logic how can we spot the error?

However this is since the latest Flutter update so I assume its a Flutter bug not an error in my code. Moreover that the dedicated thing for this has no...

Do you have a similar doctor -v? i.e.: Flutter version number? flutter doctor -v [✓] Flutter (Channel master, 3.6.0-12.0.pre, on macOS 12.6 21G115 darwin-x64, locale en-AU) • Flutter version 3.6.0-12.0.pre...

@exaby73 Well spotted! I have upgraded and it now shows nicely. I don't get why the box is like dark mode but I'm happy the label is white at least....

flutter doctor -v [✓] Flutter (Channel master, 3.6.0-12.0.pre, on macOS 12.6 21G115 darwin-x64, locale en-AU) • Flutter version 3.6.0-12.0.pre on channel master at /Users/flowpottevin/Desktop/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework...

flutter run -v: Not allowed to give private company data. flutter run -v -> prints confidential data - cannot provide that...

``` import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:google_fonts/google_fonts.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setSystemUIOverlayStyle( SystemUiOverlayStyle.dark.copyWith( statusBarColor: Colors.black, // Color for Android statusBarIconBrightness: Brightness.dark, // Status bar for Android statusBarBrightness: Brightness.dark), // Dark...

If I don't give the full logic how can we spot the error?

Code Sample ```dart import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]).then((_) { runApp(const MyApp()); }); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return...

Colours removed that's all I can do