diff --git a/Shared/Models/WriteFreelyModel.swift b/Shared/Models/WriteFreelyModel.swift index b53da10..8cb36dd 100644 --- a/Shared/Models/WriteFreelyModel.swift +++ b/Shared/Models/WriteFreelyModel.swift @@ -29,6 +29,7 @@ class WriteFreelyModel: ObservableObject { // swiftlint:disable line_length let helpURL = URL(string: "https://discuss.write.as/c/help/5")! let howToURL = URL(string: "https://discuss.write.as/t/using-the-writefreely-ios-app/1946")! + let reviewURL = URL(string: "https://apps.apple.com/app/id1531530896?action=write-review")! let licensesURL = URL(string: "https://github.com/writeas/writefreely-swiftui-multiplatform/tree/main/Shared/Resources/Licenses")! // swiftlint:enable line_length diff --git a/iOS/Settings/SettingsView.swift b/iOS/Settings/SettingsView.swift index 0d825f4..e64bc94 100644 --- a/iOS/Settings/SettingsView.swift +++ b/iOS/Settings/SettingsView.swift @@ -13,7 +13,7 @@ struct SettingsView: View { Section(header: Text("Appearance")) { PreferencesView(preferences: model.preferences) } - Section(header: Text("Support Links")) { + Section(header: Text("External Links")) { HStack { Spacer() Link("View the Guide", destination: model.howToURL) @@ -24,6 +24,11 @@ struct SettingsView: View { Link("Visit the Help Forum", destination: model.helpURL) Spacer() } + HStack { + Spacer() + Link("Write a Review on the App Store", destination: model.reviewURL) + Spacer() + } } Section(header: Text("Acknowledgements")) { VStack {