Need to know one thing in flutter is it possible to define height/width in % ? I am following some tutorial but in end, I notice that UI is not responsive so I think best way is to fix height or width by a percentage.
We can simply take example of SizedBox
SizedBox(height: 20,)
How can I show height like 5% in this SizedBox? or any other best solution to make height responsive?