Ios swift – SwiftUI TextEditor internal scroll padding without text cropping
Im building note view with footer over whole UI var body: some View { ZStack(alignment: .bottom) { VStack(alignment: .leading) { Text("(note.date.formatted())") .padding([.leading, .trailing]) TextEditor(text: $note.text) .padding() } Footer {} } } There is title text with date, TextEditor and a…