I am trying to hide the menu, and with little luck, cannot find any options other than the menuHeight, however, this is a computed property which provides the error below.
private var pagingOptions: PagingOptions {
let options = PagingOptions()
options.menuHeight = 0 <-- Error here
return options
}
PageView(options: pagingOptions, items: items, selectedIndex: $selectedIndex) { item in
//
}
Error: "Cannot assign to property: 'menuHeight' is a get-only property"
I am trying to hide the menu, and with little luck, cannot find any options other than the menuHeight, however, this is a computed property which provides the error below.
Error: "Cannot assign to property: 'menuHeight' is a get-only property"
How can I completely hide the menu?