Petr Nymsa
Petr Nymsa
@jmagman I am experiencing same issue right now with `flutter build ipa -t FILE`. We have defined two ios schemes `dev` and `prod` (production). Each flavor has own entry point...
@jmagman This caught me for several hours. If we run `flutter run --flavor Paid -t "lib_paid.dart"` everything works as expected. Just `build ipa` ignores --target parameter and we had to,...
@jmagman Command run: `flutter build ipa -t lib/main_prod --flavor prod -v` . [Full log here](https://gist.github.com/petrnymsa/33960c06e40bc9453f957d9f51891dd2). Flutter doctor (we are using FVM). The app is on 2.10.x as migration to 3.x...
Any progress on this? We use nested navigator within modal and if user "drags" out modal, we want to completely close modal, not just pop() to previous nested page.
@Salakar In our app we have defined two flavors (ios schemes) but only one Firebase project. How can we achieve to have `firebase_app_id_file.json` per scheme? One of the older project...
@ABausG I want to just know that App was opened via Widget. App itself is opening when widget is clicked, but listener does not work.
@ABausG Any clues how to fix this? Still no progress
Basically like this ```dart _widgetClickSub = HomeWidget.widgetClicked.listen((uri) { print(uri); }); ``` Listener is hooked up in state object which is alive upon whole life of application so it should be...
initiallyLaunchedFromWidget() returns null. I've compared everything I could with example project and nothing seems off, but still, listener does not trigger. .. Right now, I've cloned plugin and tried to...
Ok little progress here: I've added some logs into `HomeWidgetPlugin.kt` , mainly to onListen and onReceive where intents are filtered... ```kt private fun createReceiver(events: EventChannel.EventSink?): BroadcastReceiver { return object :...