david-swift 8eeda083e9
All checks were successful
Deploy Docs / publish (push) Successful in 18m28s
SwiftLint / SwiftLint (push) Successful in 5s
Separate AnyView extensions from widgets
2024-10-16 14:22:34 +02:00

21 lines
306 B
Swift

//
// Edge.swift
// Adwaita
//
// Created by david-swift on 21.01.24.
//
/// The edges for a widget.
public enum Edge {
/// The leading (start) edge.
case leading
/// The trailing (end) edge.
case trailing
/// The top edge.
case top
/// The bottom edge.
case bottom
}