// // SettingsLocalAccountView.swift // NetNewsWire-iOS // // Created by Maurice Parker on 6/11/19. // Copyright © 2019 Ranchero Software. All rights reserved. // import SwiftUI import Account struct SettingsLocalAccountView : View { @State var name: String var body: some View { NavigationView { List { Section(header: SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: "On My Device").padding() ) { HStack { Spacer() TextField($name, placeholder: Text("Name (Optional)")) Spacer() } } Section { HStack { Spacer() Button(action: { self.addAccount() }) { Text("Add Account") } Spacer() } } } .listStyle(.grouped) .navigationBarTitle(Text(""), displayMode: .inline) } } func addAccount() { let account = AccountManager.shared.createAccount(type: .onMyMac) account.name = name } } #if DEBUG struct SettingsLocalAccountView_Previews : PreviewProvider { static var previews: some View { SettingsLocalAccountView(name: "") } } #endif