Fix iPhone account label layout

This commit is contained in:
Maurice Parker 2019-09-12 10:19:06 -05:00
parent 31b506b85a
commit eab67ae88a
2 changed files with 6 additions and 2 deletions

View File

@ -22,7 +22,9 @@ struct SettingsFeedbinAccountView : View {
Section(header:
HStack {
Spacer()
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin").padding()
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin")
.padding()
.layoutPriority(1.0)
Spacer()
}
) {

View File

@ -18,7 +18,9 @@ struct SettingsLocalAccountView : View {
Section(header:
HStack {
Spacer()
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName).padding()
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName)
.padding()
.layoutPriority(1.0)
Spacer()
}
) {