import SwiftUI struct PaddingView: View { var body: some View { Text("Hello, World!") .padding() } } #Preview { PaddingView() }