Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save God-kimchi/4269efdd1f3f07097beb19240f78e128 to your computer and use it in GitHub Desktop.
Save God-kimchi/4269efdd1f3f07097beb19240f78e128 to your computer and use it in GitHub Desktop.
Future<Size> mediaQuerySizeByCodingPapa(BuildContext context) async{
Size size = MediaQuery.of(context).size;
if(size.width > 0){
return size;
}else{
await Future.delayed(Duration(milliseconds: 100));
return await mediaQuerySizeByCodingPapa(context);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment