一、方法说明
EdgeInsets.fromLTRB(double left, double top, double right, double bottom):分别指定四个方向,必须填值。
EdgeInsets.all(double value) : 所有方向使用相同数值。
EdgeInsets.only({left, top, right ,bottom }):可以设置具体某个方向(也可以同时指定多个方向)。
EdgeInsets.symmetric({vertical, horizontal}):用于设置对称方向,vertical指top和bottom,horizontal指left和right。
二、使用方式
一般都是配合padding使用,例如:padding: EdgeInsets.all(16.0)。
Padding,一个接受EdgeInsets来描述其边距的小部件。