Structure
AHCard
public struct AHCard<Content: View>: View
Relationships
Nested Types
AHCard.States
The state of the card
Conforms To
View
Initializers
init(state:background:content:)
public init(
state: States = .normal,
background: Color = ColorManager.Neutral.fifty.asColor,
@ViewBuilder content: @escaping () -> Content
)
Properties
state
@State public var state: States = .normal
body
public var body: some View