79226919

Date: 2024-11-26 13:38:13
Score: 1
Natty:
Report link

if you are running on chrome or flutter web, you need to disable the Mobile Ads initialization. Can use this:

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  if (!kIsWeb) await MobileAds.instance.initialize();

  runApp(const ProviderScope(child: MyApp()));
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Poliin