What is unit of measurement in flutter

后端 未结 3 831
执笔经年
执笔经年 2020-12-15 04:07

as usual, we use dp for Android and pt(point) for ios as a unit of measurement.

1 pt = 1/72 inch

1 dp = 1/160 inch

But i don\'t what is unit of measu

3条回答
  •  伪装坚强ぢ
    2020-12-15 04:54

    It all breaks down to device pixel ratio. For instance:

    var pixelRatio = MediaQuery.of(context).devicePixelRatio; // 2
    

    And say you're using SizedBox with height: 10, like:

    SizedBox(height: 10);
    

    That means your SizedBox would be 2 * 10 = 20dp tall on that device.

提交回复
热议问题