Erik
Erik
I'd be interested in that, too.
`Google Sign In failure` Firebase asks you to integrate your App by providing a SHA1 using keytool on the command line. In my case, I used the keytool manually on...
When working with lists, `value` is not required. Manipulating the lists updates the view without the need to call `refresh()`. ```dart import 'package:flutter/material.dart'; import 'package:get/get.dart'; class MyController extends GetxController {...
``` final file = './assets/fnt/font-bla-10.zip'; final fnt = BitmapFont.fromZip( (await rootBundle.load(file)).buffer.asUint8List()); ```
Has this merge been published? A different listener would be greatly appreciated.
I am using an Ionic bundle and and the App still crashed after following the steps above:. 1. Adding to build.gradle (capacitor-admob): ``` implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0' ``` 2. Replaced the `CoordinatorLayout`...
> Were you able to get it to actually show ads? I spent quite awhile but couldn't get it working. Yes, it works for me.
I would need the same feature. Running a periodic timer next to a game loop but the `readKey()` blocks exectution. ```dart Timer.periodic(Duration(seconds: 1), (timer) { print(timer); // fails }); while(true)...
On Mac 10.13.4 I installed twee2 with gem, then modified first line of twee2 to avoid the mentioned error: `#!/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/ruby --external-encoding=UTF-8`
Would like to have this option, too. `onMove` gives the Rect of the UI, not the image. So it cannot be used to ensure / test the min size programmatically.