1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| /// The top left corner. static const Alignment topLeft = Alignment(-1.0, -1.0); //左上
/// The center point along the top edge. static const Alignment topCenter = Alignment(0.0, -1.0);//上中
/// The top right corner. static const Alignment topRight = Alignment(1.0, -1.0); //右上
/// The center point along the left edge. static const Alignment centerLeft = Alignment(-1.0, 0.0); //中左
/// The center point, both horizontally and vertically. static const Alignment center = Alignment(0.0, 0.0); //正中
/// The center point along the right edge. static const Alignment centerRight = Alignment(1.0, 0.0); //中右
/// The bottom left corner. static const Alignment bottomLeft = Alignment(-1.0, 1.0);//下左
/// The center point along the bottom edge. static const Alignment bottomCenter = Alignment(0.0, 1.0); //下中
/// The bottom right corner. static const Alignment bottomRight = Alignment(1.0, 1.0); //下右
|