- window.innerHeight
- window.innerWidth
gives you the size of the window in "CSS pixel" not in real ones.
To develop a responsive application we need to know the real size of the screen to adapt the behavior of the application.
The solution in the Javascript world doesn't seem good enough
How can we do that properly in Dart?