mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-22 07:13:58 +01:00
Center service headings in add sync service scenes
This commit is contained in:
parent
fe874f3ca7
commit
bfdafee2ea
@ -21,7 +21,11 @@ struct SettingsFeedbinAccountView : View {
|
|||||||
NavigationView {
|
NavigationView {
|
||||||
Form {
|
Form {
|
||||||
Section(header:
|
Section(header:
|
||||||
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin").padding()
|
HStack {
|
||||||
|
Spacer()
|
||||||
|
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin").padding()
|
||||||
|
Spacer()
|
||||||
|
}
|
||||||
) {
|
) {
|
||||||
TextField("Email", text: $viewModel.email).textContentType(.emailAddress)
|
TextField("Email", text: $viewModel.email).textContentType(.emailAddress)
|
||||||
SecureField("Password", text: $viewModel.password)
|
SecureField("Password", text: $viewModel.password)
|
||||||
|
@ -17,7 +17,11 @@ struct SettingsLocalAccountView : View {
|
|||||||
NavigationView {
|
NavigationView {
|
||||||
Form {
|
Form {
|
||||||
Section(header:
|
Section(header:
|
||||||
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName).padding()
|
HStack {
|
||||||
|
Spacer()
|
||||||
|
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName).padding()
|
||||||
|
Spacer()
|
||||||
|
}
|
||||||
) {
|
) {
|
||||||
HStack {
|
HStack {
|
||||||
TextField("Name", text: $name)
|
TextField("Name", text: $name)
|
||||||
|
Loading…
Reference in New Issue
Block a user