Sizing elements to percentage of screen width/height

前端 未结 10 1752
情深已故
情深已故 2020-11-30 17:11

Is there a simple (non-LayoutBuilder) way to size an element relative to screen size (width/height)? For example: how do I set the width of a CardView to be 65% of the scree

10条回答
  •  南笙
    南笙 (楼主)
    2020-11-30 17:37

    This might be a little more clear:

    double width = MediaQuery.of(context).size.width;
    
    double yourWidth = width * 0.65;
    

    Hope this solved your problem.

提交回复
热议问题