Skip to content
Snippets Groups Projects
Commit 83bdd9fa authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Update SendRequestView

parent 5c699872
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!68Messenger example - send auth request
...@@ -34,41 +34,44 @@ public struct SendRequestView: View { ...@@ -34,41 +34,44 @@ public struct SendRequestView: View {
WithViewStore(store.scope(state: ViewState.init)) { viewStore in WithViewStore(store.scope(state: ViewState.init)) { viewStore in
Form { Form {
Section { Section {
HStack { Button {
Label(viewStore.myContact?.username ?? "", systemImage: "person") viewStore.send(.set(\.$sendUsername, !viewStore.sendUsername))
Spacer() } label: {
Toggle( HStack {
isOn: viewStore.binding( Label(viewStore.myContact?.username ?? "", systemImage: "person")
get: \.sendUsername, .tint(Color.primary)
send: { SendRequestAction.set(\.$sendUsername, $0) } Spacer()
), Image(systemName: viewStore.sendUsername ? "checkmark.circle.fill" : "circle")
label: EmptyView.init .foregroundColor(.accentColor)
) }
} }
.animation(.default, value: viewStore.sendUsername)
HStack { Button {
Label(viewStore.myContact?.email ?? "", systemImage: "envelope") viewStore.send(.set(\.$sendEmail, !viewStore.sendEmail))
Spacer() } label: {
Toggle( HStack {
isOn: viewStore.binding( Label(viewStore.myContact?.email ?? "", systemImage: "envelope")
get: \.sendEmail, .tint(Color.primary)
send: { SendRequestAction.set(\.$sendEmail, $0) } Spacer()
), Image(systemName: viewStore.sendEmail ? "checkmark.circle.fill" : "circle")
label: EmptyView.init .foregroundColor(.accentColor)
) }
} }
.animation(.default, value: viewStore.sendEmail)
HStack { Button {
Label(viewStore.myContact?.phone ?? "", systemImage: "phone") viewStore.send(.set(\.$sendPhone, !viewStore.sendPhone))
Spacer() } label: {
Toggle( HStack {
isOn: viewStore.binding( Label(viewStore.myContact?.phone ?? "", systemImage: "phone")
get: \.sendPhone, .tint(Color.primary)
send: { SendRequestAction.set(\.$sendPhone, $0) } Spacer()
), Image(systemName: viewStore.sendPhone ? "checkmark.circle.fill" : "circle")
label: EmptyView.init .foregroundColor(.accentColor)
) }
} }
.animation(.default, value: viewStore.sendPhone)
} header: { } header: {
Text("My facts") Text("My facts")
} }
...@@ -141,7 +144,10 @@ public struct SendRequestView_Previews: PreviewProvider { ...@@ -141,7 +144,10 @@ public struct SendRequestView_Previews: PreviewProvider {
} }
return contact return contact
}(), }(),
isSending: true, sendUsername: true,
sendEmail: false,
sendPhone: true,
isSending: false,
failure: "Something went wrong" failure: "Something went wrong"
), ),
reducer: .empty, reducer: .empty,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment