对齐 Alignment
alignment.Alignment
类具有 x
和 y
属性,表示与矩形中心的距离。当 x=0
,y=0
时,表示矩形的中心。x=-1
,y=-1
表示矩形的左上角,x=1.0
,y=1.0
表示矩形的右下角。在 flet.alignment
模块中有预定义的对齐常量:top_left
、top_center
、top_right
、center_left
、center
、center_right
、bottom_left
、bottom_center
、bottom_right
。
例如:
container_1.alignment = alignment.center
container_2.alignment = alignment.top_left
container_3.alignment = alignment.Alignment(-0.5, -0.5)