Add padding to settings account header to make it look like the other section headers
This commit is contained in:
parent
d9ea35b6f6
commit
2497c50ade
|
@ -10,7 +10,6 @@ import SwiftUI
|
||||||
import Combine
|
import Combine
|
||||||
import Account
|
import Account
|
||||||
|
|
||||||
|
|
||||||
struct SettingsView : View {
|
struct SettingsView : View {
|
||||||
|
|
||||||
@ObservedObject var viewModel: ViewModel
|
@ObservedObject var viewModel: ViewModel
|
||||||
|
@ -40,7 +39,7 @@ struct SettingsView : View {
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildAccountsSection() -> some View {
|
func buildAccountsSection() -> some View {
|
||||||
Section(header: Text("ACCOUNTS")) {
|
Section(header: Text("ACCOUNTS").padding(.top, 22.0)) {
|
||||||
ForEach(viewModel.accounts) { account in
|
ForEach(viewModel.accounts) { account in
|
||||||
NavigationLink(destination: SettingsDetailAccountView(viewModel: SettingsDetailAccountView.ViewModel(account))) {
|
NavigationLink(destination: SettingsDetailAccountView(viewModel: SettingsDetailAccountView.ViewModel(account))) {
|
||||||
Text(verbatim: account.nameForDisplay)
|
Text(verbatim: account.nameForDisplay)
|
||||||
|
|
Loading…
Reference in New Issue