enum ViewBuilder
Swift
@resultBuilder enum ViewBuilder
Not documented.
Sources/LavaUI/ViewBuilder.swift:4
Methods
static func buildBlock() -> EmptyView
Not documented.
Sources/LavaUI/ViewBuilder.swift:9
static func buildBlock<Content>(_ content: Content) -> Content where Content : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:13
static func buildBlock<each Content>(_ content: repeat each Content) -> TupleView<repeat each Content> where repeat each Content : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:17
static func buildEither<TrueContent, FalseContent>(first: TrueContent) -> EitherView<TrueContent, FalseContent> where TrueContent : View, FalseContent : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:29
static func buildEither<TrueContent, FalseContent>(second: FalseContent) -> EitherView<TrueContent, FalseContent> where TrueContent : View, FalseContent : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:35
static func buildExpression<Content>(_ content: Content) -> Content where Content : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:5
static func buildLimitedAvailability<Content>(_ content: Content) -> Content where Content : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:41
static func buildOptional<Content>(_ content: Content?) -> OptionalView<Content> where Content : View
Not documented.
Sources/LavaUI/ViewBuilder.swift:23