Code formatting changes
This commit is contained in:
parent
d4e2d44d8f
commit
fb29d006aa
|
@ -10,8 +10,6 @@ import SwiftUI
|
||||||
import Combine
|
import Combine
|
||||||
import Account
|
import Account
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct SettingsView : View {
|
struct SettingsView : View {
|
||||||
@ObjectBinding var viewModel: ViewModel
|
@ObjectBinding var viewModel: ViewModel
|
||||||
@State var subscriptionsImportAccounts: ActionSheet? = nil
|
@State var subscriptionsImportAccounts: ActionSheet? = nil
|
||||||
|
@ -35,21 +33,13 @@ struct SettingsView : View {
|
||||||
}
|
}
|
||||||
|
|
||||||
Section(header: Text("ABOUT")) {
|
Section(header: Text("ABOUT")) {
|
||||||
|
|
||||||
Text("About NetNewsWire")
|
Text("About NetNewsWire")
|
||||||
|
|
||||||
PresentationButton(Text("Website"), destination: SafariView(url: URL(string: "https://ranchero.com/netnewswire/")!))
|
PresentationButton(Text("Website"), destination: SafariView(url: URL(string: "https://ranchero.com/netnewswire/")!))
|
||||||
|
|
||||||
PresentationButton(Text("Github Repository"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire")!))
|
PresentationButton(Text("Github Repository"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire")!))
|
||||||
|
|
||||||
PresentationButton(Text("Bug Tracker"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire/issues")!))
|
PresentationButton(Text("Bug Tracker"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire/issues")!))
|
||||||
|
|
||||||
PresentationButton(Text("Technotes"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire/tree/master/Technotes")!))
|
PresentationButton(Text("Technotes"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire/tree/master/Technotes")!))
|
||||||
|
|
||||||
PresentationButton(Text("How to Support NetNewsWire"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire/blob/master/Technotes/HowToSupportNetNewsWire.markdown")!))
|
PresentationButton(Text("How to Support NetNewsWire"), destination: SafariView(url: URL(string: "https://github.com/brentsimmons/NetNewsWire/blob/master/Technotes/HowToSupportNetNewsWire.markdown")!))
|
||||||
|
|
||||||
Text("Add NetNewsWire News Feed")
|
Text("Add NetNewsWire News Feed")
|
||||||
|
|
||||||
}
|
}
|
||||||
.foregroundColor(.primary)
|
.foregroundColor(.primary)
|
||||||
|
|
||||||
|
@ -118,6 +108,8 @@ struct SettingsView : View {
|
||||||
return ActionSheet(title: Text("Export Subscriptions..."), message: Text("Select the account to export out of."), buttons: buttons)
|
return ActionSheet(title: Text("Export Subscriptions..."), message: Text("Select the account to export out of."), buttons: buttons)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MARK: ViewModel
|
||||||
|
|
||||||
class ViewModel: BindableObject {
|
class ViewModel: BindableObject {
|
||||||
|
|
||||||
let didChange = PassthroughSubject<ViewModel, Never>()
|
let didChange = PassthroughSubject<ViewModel, Never>()
|
||||||
|
|
Loading…
Reference in New Issue