From 2497c50ade79402068a199298da563954fdf0b9c Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 8 Sep 2019 04:48:30 -0500 Subject: [PATCH] Add padding to settings account header to make it look like the other section headers --- iOS/Settings/SettingsView.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/iOS/Settings/SettingsView.swift b/iOS/Settings/SettingsView.swift index c6b927476..d9c8b40ee 100644 --- a/iOS/Settings/SettingsView.swift +++ b/iOS/Settings/SettingsView.swift @@ -10,7 +10,6 @@ import SwiftUI import Combine import Account - struct SettingsView : View { @ObservedObject var viewModel: ViewModel @@ -40,7 +39,7 @@ struct SettingsView : View { } func buildAccountsSection() -> some View { - Section(header: Text("ACCOUNTS")) { + Section(header: Text("ACCOUNTS").padding(.top, 22.0)) { ForEach(viewModel.accounts) { account in NavigationLink(destination: SettingsDetailAccountView(viewModel: SettingsDetailAccountView.ViewModel(account))) { Text(verbatim: account.nameForDisplay)