Михаил Капелько 10 months ago
parent
commit
0314c08bbe
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      Modules/MeetupIdX/src/MeetupId.V.swift

+ 5
- 3
Modules/MeetupIdX/src/MeetupId.V.swift View File

@@ -19,9 +19,10 @@ extension MeetupId {
TextField("Binding-3", value: $textField.v, formatter: Cord.TextFieldValueOwner())
.padding(8)
.border(Color.blue, width: 2)
ProgressView()
.padding(8)
.opacity(isLoading.v ? 1 : 0)
if isLoading.v {
ProgressView()
.padding(8)
}
}

Button(action: join.v.send) {
@@ -36,6 +37,7 @@ extension MeetupId {
}
.frame(width: 320)
.padding()
.animation(.easeInOut(duration: 0.3))
}
}
}

Loading…
Cancel
Save