position_layout.dart 127 B

12345678910111213
  1. enum HorizontalLayout {
  2. Left,
  3. Center,
  4. Right,
  5. Stretch,
  6. }
  7. enum VerticalLayout {
  8. Top,
  9. Center,
  10. Bottom,
  11. Stretch,
  12. }