Skip to content

Instantly share code, notes, and snippets.

@chaudharydeepanshu
Last active January 29, 2022 12:17
Show Gist options
  • Save chaudharydeepanshu/7d6d47411d790b1b5f976232e5048c75 to your computer and use it in GitHub Desktop.
Save chaudharydeepanshu/7d6d47411d790b1b5f976232e5048c75 to your computer and use it in GitHub Desktop.
import 'package:google_mobile_ads/google_mobile_ads.dart';
import 'package:flutter/material.dart';
Future<AnchoredAdaptiveBannerAdSize?> anchoredAdaptiveBannerAdSize(
BuildContext context) async {
// Used to set size of adaptive banner ad according to device width and orientation.
return await AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize(
MediaQuery.of(context).size.width.toInt());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment