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