Dario Digregorio
Dario Digregorio
I spend too much time figuring out why the described setup is not working with my project until I realized that the link to the iOS Setup brings you to...
I am unable to build my app. Is there a temporary solution?
It worked for me by renaming it back to Runner
I managed now to retrieve the widget information by saving the configuration with the appWidgetId and the `getData()`method. I then can iterate in the Flutter part over the widgetIds and...
I am still struggling with some parts of implementing the configuration. I want to save the configuration information about the widget, let's say a weather location, into the SharedPreferences. While...
I have the same problem when `renderFlutterWidget` inside a background callback. I tried using `flutter_isolates` but I still get the error. I think the issue should be renamed since this...
I still encounter the same issue when using `precacheImage`. But using `renderFlutterWidget` successive seems to work.
Did not work either. Just the hack of calling `renderFlutterWidget` twice seems to work.
When using it with the firebase emulators together you can use this launch configuration: ``` json { "type": "node", "request": "attach", "name": "Attach Functions", "port": 9229, "restart": true, "skipFiles": [...
I had the same issue and could solve it by adding proguard rules. add this to your app `build.gradle` ``` buildTypes { release { // ... proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' }...