'Avoid runtime overflow of pixels in flutter
I am using flutter for developing a hybrid application for both iOS and android. I am trying to prepare responsive page, and I am able to use the width and height properties of Media query. The problem begins when I try to get my application from full screen to split screen, there it is not adapting with the screen size. I want to know if is there any widget which could be used to achieve this behavior?
Solution 1:[1]
Wrap the Parent Widget of class in SingleChildScrollView
SingleChildScrollView(
child: Scaffold(
.
.
.
)
)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Hammad Ali |
