Add button to add public instance to custom list

This commit is contained in:
Arkadiusz Fal
2023-07-25 13:08:21 +02:00
parent 548908b26f
commit 19d11a3ad9
6 changed files with 54 additions and 2 deletions

View File

@@ -138,8 +138,12 @@ struct InstancesSettings: View {
}
}
Button("Add Location...") {
presentingInstanceForm = true
HStack {
Button("Add Location...") {
presentingInstanceForm = true
}
Spacer()
AddPublicInstanceButton()
}
}
.frame(minWidth: 0, maxWidth: .infinity, alignment: .leading)