I want to have this list at the bottom of the screen. I know that there are only 4 Rows (or 5). I tried to use UITableView.appearance().contentInset.top = …
But the value depends on the screenHeight, the rowHeight and the safeArea. When I tried to use this after onAppeared()
the largeTitle changed to inLine. I need it because then I need GeometryReader for the inset and the listrow. I also set the TableView to UiTableView.appearance().scrollingEnabled = false
I don’t know how to archive it. I would like to have the title always large and the screen not scrollable.
Thanks for any help.
var body:some View{
NavigationView{
List{
Text(„hi“)
Text(„hi“)
Text(„hi“)
Text(„hi“)
}
.navigationBarTitle(„Hi“, displayMode: .large)
}
}