File tree Expand file tree Collapse file tree
AndroidSwiftUICore/Sources/AndroidSwiftUICore/Primitives Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,13 @@ public struct Alignment: Sendable {
1919 self . vertical = vertical
2020 }
2121 public static let center = Alignment ( horizontal: . center, vertical: . center)
22+ public static let leading = Alignment ( horizontal: . leading, vertical: . center)
23+ public static let trailing = Alignment ( horizontal: . trailing, vertical: . center)
24+ public static let top = Alignment ( horizontal: . center, vertical: . top)
25+ public static let bottom = Alignment ( horizontal: . center, vertical: . bottom)
2226 public static let topLeading = Alignment ( horizontal: . leading, vertical: . top)
27+ public static let topTrailing = Alignment ( horizontal: . trailing, vertical: . top)
28+ public static let bottomLeading = Alignment ( horizontal: . leading, vertical: . bottom)
2329 public static let bottomTrailing = Alignment ( horizontal: . trailing, vertical: . bottom)
2430}
2531
You can’t perform that action at this time.
0 commit comments