qiuxiang / flutter-android-window

A flutter plugin allows you to create native android floating window.
MIT License
62 stars 19 forks source link

使用MediaQuery.of(context).size.width获取的屏幕宽度,实际展示的宽度不到屏幕的一半 #24

Open zzzhhhhh001 opened 1 year ago

zzzhhhhh001 commented 1 year ago

final double screenHeight = MediaQuery.of(context).size.height; final double screenWidth = MediaQuery.of(context).size.width; print("screenHeightscreenHeight:$screenHeight"); print("screenWidthscreenWidth:$screenWidth"); android_window.open( size: Size(screenWidth, 600), position: Offset(100, 1500), );

用的上面的代码,高度获取是900多,宽度是411

zzzhhhhh001 commented 1 year ago

Screenshot_2023-03-21-16-41-32-903_com kk flutter_kk 图中,倒数第二个按钮是用获取的屏幕宽度,悬浮窗也是用的屏幕宽度,差距好大