This is gold thanks you for posting the process! 👍🏻
@taslimfi3 жыл бұрын
Great job. I wish I could give multiple thumbs up for this!
@devsang4 жыл бұрын
You can do the payment stripe, I haven't seen the tutorial since swiftui 2.0!
@itemseller33524 жыл бұрын
Congratulations on Video #300 :)
@MrRonanX3 жыл бұрын
Wow! Super cool! Thanks
@dev_jeongdaeri4 жыл бұрын
Awesome!
@ThierryZanzouri4 жыл бұрын
Awesome as usual
@yimkongyan3 жыл бұрын
thank you
@krakatoor4 жыл бұрын
Beautiful
@1p9934 жыл бұрын
Awesome video 😘
@myga773 жыл бұрын
Bro, how can i use your func getIndex for different arrays from one class?
@paulikhane4 жыл бұрын
Thanks a lot. Can you do a Collapsing AppBar Like the Collapsing AppBar in Android Material UI. You are amazing by the way.
@DjEZEQUIELVISCARRA4 жыл бұрын
Hi Kavsoft. I have done as you did in the tutorial I have added a search with filter and when I want to delete the object it turns out that in the IndexSet it removes the first one from the list and not the selected object! for example, when I have two objects with the same name, if I delete the second object found, it deletes the first one in the list. Is there someone who can help me?
4 жыл бұрын
Is Cart is ❤️
@realgambi4 жыл бұрын
I have error on deleteItem Fatal error: Index out of range: file Swift/ContiguousArrayBuffer.swift, line 444 I not use IOS 14 @EnvironmentObject var orderManager: OrderManager can use like @StateObject?
@shoesli76314 жыл бұрын
这太秀了
@SpencerWalden83 жыл бұрын
Why not the following code rather then a function to get by index for binding? ForEach(cartData.items.indices) { index in ItemView(item: $cartData.items[index]) }
@SpencerWalden83 жыл бұрын
I see in another of your vids a month laster you did this: kzbin.info/www/bejne/ioKpnqJraLGJn9E wondering if there is a reason it has to be different here?
@SpencerWalden83 жыл бұрын
I believe I answered my own question. The approach in this video is needed so you can delete an item with out getting an out of index error