masewo
masewo
@LinusU For Windows and Linux I am using a different approach: i. Start a HttpServer that listens on localhost ii. Launch url with url_launcher iii. Fetch redirect url and serve...
@darshankawar I run following commands: ``` rm -rf Pods rm -rf Podfile.lock rm -rf ../pubspec.lock rm -rf ~/.pub-cache/hosted/pub.dartlang.org/ rm -rf ~/Library/Developer/Xcode/DerivedData pod cache clean --all pod deintegrate flutter pub cache...
Sure. Here is my podfile: Click To Expand ``` source 'https://github.com/CocoaPods/Specs.git' # source 'https://cdn.cocoapods.org/' $FirebaseAnalyticsWithoutAdIdSupport = true # Uncomment this line to define a global platform for your project platform...
I received a new macbook today so that I can be sure that it is not a device related problem. The build also fails on the new macbook. So I...
I can confirm that removing the file_selector plugin also fixes the problem for me. I also tried building an ios app for following combinations: - empty project + firebase_auth: ✔️...
Not a proper fix but temporarily solving my build problems: https://github.com/masewo/flutterfire/commit/56b59845400d3761eb0f541cd5a1592eeb2a0664
This is working without any problems for me: ``` SingleChildScrollView( scrollDirection: Axis.horizontal, child: ZefyrToolbar.basic(controller: _controller)) ```
Nice component! Had to use `overflow-y-hidden` on my Windows machine to get rid of the scrollbar. Would be nice to see it with `minRows` and `maxRows` options. Also the ability...
I stumbled above a similar behaviour while migrating from deprecated `WillPopScope` to `PopScope`. For me it helped to add a bit of delay to the Future that returns false: ```...
I basically forked this repo and fixed this problem for me (in a quiet bad way): https://github.com/masewo/modal_bottom_sheet/blob/36a1cfebb4643b89f871aefe57671a6873d173ee/modal_bottom_sheet/lib/src/bottom_sheet_route.dart#L108 After this change the modal sheet was not stuck anymore on half way.