Wrapper
SwiftUI View to wrap the ContentView
-
Init the
ViewDeclaration
Swift
init(@ViewBuilder header: () -> Header, @ViewBuilder content: () -> Content, @ViewBuilder buttons: () -> Buttons) -
The header of the
ViewDeclaration
Swift
let header: Header -
The content of the
ViewDeclaration
Swift
let content: Content -
The buttons of the
ViewDeclaration
Swift
let buttons: Buttons -
Current color scheme
Declaration
Swift
@Environment var colorScheme: ColorScheme { get }
-
The body of the
ViewDeclaration
Swift
var body: some View { get }
View on GitHub
Wrapper Structure Reference