Red Bayoub

Results 6 comments of Red Bayoub

I've had a similar problem and the my problem was intialValue comes after a future which is after building the widget so my solution is you force rebuilding the widget...

https://github.com/coreui/coreui-free-vue-laravel-admin-template#when-you-have-project-open-in-browser

My workaround with the help of @GENL comment. ``` Orientation _lastScreenOrientation; UniqueKey pdfViewerKey = UniqueKey(); @override Widget build(BuildContext context) { return OrientationBuilder( builder: (ctx, ori) { Orientation newOrientation = MediaQuery.of(context).orientation;...

@akshayyadav76 thanks for your solution it work perfectly for me ,but for fit policy i used the default one ( didn't use this option at all ) and it looks...

for now my workaround is ``` {{ option.label }} ```

I had the same issue and i'm using this now code sample ```dart import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) {...