Great video Brian 👍 I'd be interested to see how you would build group messaging into this project 😊
@victor_vvinner743 жыл бұрын
Hi Brian! Maybe your app will contain voice messaging? Would be nice to see any approachs to make it Thank you!
@codingswiftly2 жыл бұрын
@Environment(.\presentationMode) is deprecated now. The warning will tell you to use isPresented, but to accomplish what we want here you will instead want to use @Environment(\.dismiss). Then where presentationMode.wrappedValue.dismiss is called you just call dismiss()
@kenmillionx3 жыл бұрын
Looking forward to seeing more creative videos like this one 👍👍👍 cool video 👍
@davehall60012 жыл бұрын
In CreateNewMessageView, ForEach(vm.users) {user in........ only show the first item in the array and repeat number of array count. I spent two days to troubleshoot... then I found the answer in stackoverflow.... @DocumentID var id: String? replaced with var id: String? = UUID().uuidString and ForEach(vm.users, id:\.id).... But... great tutorial.
@rocketmediapro36722 жыл бұрын
Rất hay, tôi đã làm đến đây, cảm ơn!
@jeromedubois43972 жыл бұрын
Hello great videos, one question how do you initialized ChatUser with .init(data: data) ? I don't have that option on my side. thank you
@LetsBuildThatApp2 жыл бұрын
I suggest downloading the code.
@jeromedubois43972 жыл бұрын
@@LetsBuildThatApp Thank you I love your videos keep going !!!
@ZeakZac3 жыл бұрын
Hi Brian :) My app fails at the getting snapshot data stage. I've tried to log in before getting data and I've tried everything. It's just not getting that snapshot data. Is there any other possible solutions for this? Or maybe a direction to look at? Because I've googled as well and nothing...
@nexteon3 жыл бұрын
I had the same problem, so I downloaded his source code, copied the login view file and pasted into my project. Then I just commented my code and compared the two to find the issue.
@ZeakZac3 жыл бұрын
@@nexteon Did you find the issue? What was it?
@nexteon3 жыл бұрын
@@ZeakZac yeah, it was related to the array for the chat user class, but it could be different for you, so I guess you should just compare the source code after downloading it