Fix iPhone account label layout
This commit is contained in:
parent
31b506b85a
commit
eab67ae88a
|
@ -22,7 +22,9 @@ struct SettingsFeedbinAccountView : View {
|
||||||
Section(header:
|
Section(header:
|
||||||
HStack {
|
HStack {
|
||||||
Spacer()
|
Spacer()
|
||||||
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin").padding()
|
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin")
|
||||||
|
.padding()
|
||||||
|
.layoutPriority(1.0)
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
|
|
|
@ -18,7 +18,9 @@ struct SettingsLocalAccountView : View {
|
||||||
Section(header:
|
Section(header:
|
||||||
HStack {
|
HStack {
|
||||||
Spacer()
|
Spacer()
|
||||||
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName).padding()
|
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName)
|
||||||
|
.padding()
|
||||||
|
.layoutPriority(1.0)
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
|
|
Loading…
Reference in New Issue