Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经看到 Dart 有一个 Screen 类,但不能使用它来获取目标设备移动浏览器屏幕的宽度和高度。
我尝试了几种方法来获取它,但总是失败
您可以尝试使用Screen.available(例如window.screen.available.height)或者window.innerHeight如果window.screen.height不起作用。
window.screen.available.height
window.innerHeight
window.screen.height
请参阅Get the device width in javascript 的答案。