ViewList
public protocol ViewList : _ViewEmptyChecking, View
A view that shows content in a VStack.
-
Undocumented
Declaration
Swift
associatedtype V : View
-
number of View in the ViewList
Declaration
Swift
var count: Int { get }
-
the View at Index in the ViewList
Declaration
Swift
func view(at index: Int) -> V
-
is first item a text in the ViewList
Declaration
Swift
func isFirstItemAText() -> Bool
-
allow the number of icons to be shown in Icon Stack
Declaration
Swift
func numberOfIconsToShow() -> Int
-
body
Extension methodDeclaration
Swift
var body: some View { get }
-
isEmpty
Extension methodUndocumented
Declaration
Swift
var isEmpty: Bool { get }