Skip to content

Instantly share code, notes, and snippets.

View melodysdreamj's full-sized avatar

june lee melodysdreamj

View GitHub Profile
@melodysdreamj
melodysdreamj / learning_scala_05.ipynb
Created July 12, 2018 10:42 — forked from mrbkdad/learning_scala_05.ipynb
learning scala chapter 5
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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);
}
}