EdgeInsets:主要用來設置填充方向的
fromLTRB(double left, double top, double right, double bottom):分別指定四個方向的填充筑累。
all(double value) : 所有方向均使用相同數(shù)值的填充。
only({left, top, right ,bottom }):可以設置具體某個方向的填充(可以同時指定多個方向)绒瘦。
symmetric({vertical, horizontal}):用于設置對稱方向的填充挑社,vertical指top和bottom臼寄,horizontal指left和right。
注意:
fromLTRB和only區(qū)別:
#相同之處:
他們都是用來設置四個不同方向的填充的
#不同之處:
fromLTRB(double left, double top, double right, double bottom)必須同時設置所有參數(shù)
only({left, top, right ,bottom })可以單一設置其中一項或者多項
例如:
fromLTRB(2, 2, 0, 1);
only(left:2, top:1);