How to save Mediaquery Size in a separate file in flutter?
I want to save every button and container size as mediaquery as follow in a separate dart file.
class FrameSize{
var SliderHeight = MediaQuery.of(context).size.height / 6;
var addToCartButtonHeight = MediaQuery.of(context).size.height / 14;
}
So I can call them wherever I want and change at a one place. Is that possible??
from Recent Questions - Stack Overflow https://ift.tt/334RYRd
https://ift.tt/eA8V8J
Comments
Post a Comment