We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ef56f commit 9d48406Copy full SHA for 9d48406
SwiftPamphletApp/InfoOrganizer/Info/EditInfoView.swift
@@ -125,9 +125,13 @@ struct EditInfoView: View {
125
TabView(selection: $selectedTab) {
126
TextEditor(text: $info.des)
127
.overlay(
128
- RoundedRectangle(cornerRadius: 5)
+ Rectangle()
129
.stroke(.secondary, lineWidth: 1)
130
+ .opacity(0.5)
131
)
132
+ .lineSpacing(5)
133
+ .disableAutocorrection(true)
134
+ .padding(10)
135
.tabItem { Label("文本", systemImage: "circle") }
136
.tag(1)
137
WebUIView(html: wrapperHtmlContent(content: MarkdownParser().html(from: info.des)), baseURLStr: "")
0 commit comments