Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10455539
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
View Options
diff --git a/iOS/Settings/SettingsView.swift b/iOS/Settings/SettingsView.swift
index d67a90f..0d825f4 100644
--- a/iOS/Settings/SettingsView.swift
+++ b/iOS/Settings/SettingsView.swift
@@ -1,56 +1,61 @@
import SwiftUI
struct SettingsView: View {
@EnvironmentObject var model: WriteFreelyModel
var body: some View {
VStack {
SettingsHeaderView()
Form {
Section(header: Text("Login Details")) {
AccountView()
}
Section(header: Text("Appearance")) {
PreferencesView(preferences: model.preferences)
}
- Section(header: Text("Support")) {
+ Section(header: Text("Support Links")) {
HStack {
Spacer()
- Link("Visit Help Forum", destination: model.helpURL)
+ Link("View the Guide", destination: model.howToURL)
+ Spacer()
+ }
+ HStack {
+ Spacer()
+ Link("Visit the Help Forum", destination: model.helpURL)
Spacer()
}
}
Section(header: Text("Acknowledgements")) {
VStack {
VStack(alignment: .leading) {
Text("This application makes use of the following open-source projects:")
.padding(.bottom)
Text("• Lora typeface")
.padding(.leading)
Text("• Open Sans typeface")
.padding(.leading)
Text("• Hack typeface")
.padding(.leading)
}
.padding(.bottom)
.foregroundColor(.secondary)
HStack {
Spacer()
Link("View the licenses", destination: model.licensesURL)
Spacer()
}
}
.padding()
}
}
}
// .preferredColorScheme(preferences.selectedColorScheme) // See PreferencesModel for info.
}
}
struct SettingsView_Previews: PreviewProvider {
static var previews: some View {
SettingsView()
.environmentObject(WriteFreelyModel())
}
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Fri, Jan 31, 2:49 PM (12 h, 28 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3145775
Attached To
rWFSUI WriteFreely SwiftUI
Event Timeline
Log In to Comment