Skip to content

EitherABC

ohitsdaniel edited this page Feb 5, 2021 · 3 revisions

EitherABC

An either type, representing up to 3 different view types

public enum EitherABC<A: View, B: View, C: View>

Inheritance

View

Enumeration Cases

a

case a(: A)

b

case b(: B)

c

case c(: C)

Properties

body

var body: some View
Clone this wiki locally