Post

Replies

Boosts

Views

Activity

Remove extra space from NavigationView
I've created a custom navigation title view class and I want to remove the extra space between the title and NavigationView. import SwiftUI struct AgeCategoriesView: View {     var body: some View {         VStack(spacing: 0){ //Custom class for navigation title bar             CustomNavigationView(title: "AGE CATEGORIES")             NavigationView {                     List{                         Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)                         Text("Hello, World!")                         Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)                 }             }         }                       } } Output required: I want to remove the extra between the title and the list.
1
2
4.2k
Jul ’21