Kenneth Chu
Kenneth Chu
I submitted a PR, hope this can merge. https://github.com/Dn-a/flutter_tags/pull/78 for now, you can just use this by pointing to the git path in `pubspec.yaml` ``` pubspec.yaml flutter_tags: git: url: [email protected]:ming-chu/flutter_tags.git...
@FRANIAZA You can just use `focusAfterSubmit: true` with the PR as the following: ```dart TagsTextField( autofocus: true, focusAfterSubmit: true, width: double.infinity, padding: EdgeInsets.symmetric(horizontal: 10), onSubmitted: (String str) { setState(() {...
I encountered the same error here, with the code below for reference. `fake_cloud_firestore: ^2.0.1` ```dart test('orderBy is not working', () async { final firestore = FakeFirebaseFirestore(); final users = firestore.collection('users');...
Maybe related to iOS 14, did you add the UsageDescription? ``` NSUserTrackingUsageDescription This identifier will be used to deliver personalized ads to you. ```
> Nope, it's Android! @shinayser sorry about that. I guess isLoaded is false here: ``` if (await rewardAd.isLoaded) { rewardAd.show(); } ``` I recommend you try to show the ad...
> @ming-chu Jsut tried your solution and nope, it also doesnt work =( @shinayser Would you please post the code after you modified? Also, you may want to check the...
> I'm also having the same problem. I've tried to use the test id from Google, but the ad is still not showing. I've changed the algorithm, it's still not...
> Sorry for the late response. Here it goes: > > ```dart > Future _showRewardedAlt() async { > var completer = Completer(); > > AdmobReward rewardAd; > rewardAd = AdmobReward(...
@shinayser I tried using a new project with the code below and it works. pubspec.yaml: `admob_flutter: ^1.0.0-beta.7` ``` import 'package:admob_flutter/admob_flutter.dart'; import 'package:flutter/material.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); Admob.initialize(); runApp(MyApp()); } class...
@shinayser I tried your code, but the listener of `AdmobReward` never called. What I guess is the instant was destroyed before the listener is called.