⚠ UPDATE ⚠ The data models in the API have slightly changed since recording this video! Find updated data models here (see comments in the file): - User: github.com/SwiftfulThinking/SwiftUI-in-Practice/blob/main/SwiftfulSwiftUIinPractice/Shared/User.swift - Product: github.com/SwiftfulThinking/SwiftUI-in-Practice/blob/main/SwiftfulSwiftUIinPractice/Shared/Product.swift
@mktv33927 ай бұрын
Thanks man, I have 3 years experience in C#. A few days ago I was curious about Swift. I have never tried any other language than C#, but Swift seems really interesting. I started to watch a course on PluralSight, but it was kind of to slow. You go straight to the point (Learning by doing :) ). Great work man, keep it up!
@vladimirmoor4 ай бұрын
Thanks for sharing! Especially for real networking stuff - always good to see how other implements and use async\await for that.
@i-AMine7 ай бұрын
Maan we can't wait for the next videos, this looks like it's gonna be a super awesome playlist
@TenderAI7 ай бұрын
Great Thanks, Nick!
@Designguidetv7 ай бұрын
This was great, nice to have it all lined out here
@dhruvsuhirid7105 ай бұрын
Hey Nick, You are doing great work and i have been following you a while. I have learnt a lot from you! Can you please tell me what to do if the fetch requests does not work?
@MattGallinot6 ай бұрын
Thanks Nick! your content is really helping me! Any chance you will do a mock fitness app set up with connecting an apple watch
@oliviergeiger7 ай бұрын
Thanks Nick for all the stuff you do
@hawkeye66147 ай бұрын
Thanks, please start series on DSA too
@abdulyasin_iOS3 ай бұрын
maaaaan, amazing.. Just loved it
@AdeoluSegun-fd2dx7 ай бұрын
Thanks Nick, your contents have been helpful.
@alzearafat6 ай бұрын
Thank you Nick. These are very helpful 🙏
@RobertMcGovernTarasis7 ай бұрын
DummyJson is so useful, I’m self hosting an instance of it for learning against
@wonton1207 ай бұрын
Thanks for sharing your good work.
@AdamTabiev7 ай бұрын
Thanks Nick🙏
@djthevj252 ай бұрын
Amazing explanation... good work !! However, I see now the API doesn't respond back with the Phone as a product detail so have to keep it in mind if someone tries to work that out.
@SwiftfulThinking2 ай бұрын
The API works, see comment on this video for data model changes
@djthevj252 ай бұрын
@@SwiftfulThinking Yes, I encountered that and fixed that too. I meant by the response that the product doesn't give (iPhone, Samsung, Microsoft etc) from the fake API anymore unlike what we see in your videos.
@rden62527 ай бұрын
Thanks Nick for all your great videos. I was looking for some sort of message form to send a wish for apps to include in this new playlist. Discord is a bit much for me. I wish to know how to make the infinite drawing surface for sketchup or now, shapr3d. I cannot find anything on how these are made. Another thing, I wanted to make a simple text app document that saves the document to the desktop, or where you wish it to go. I cannot see how to save it anywhere except the internal document folder. Beginner questions, and beginner thanks to you.
@gorangratte24713 ай бұрын
At 6:00. What is the reason for the opacity(0.001). The rectangle is clickable anyway?
@imam_robani6 ай бұрын
thanks for sharing
@laurentbennis7 ай бұрын
that was so awesome :)
@SwiftDeveloperWorld6 ай бұрын
.cornerRadius was deprecated but why do you use it again?
@charliereeder61317 ай бұрын
What's the yellow file icon in the project navigator?
@DikiyPrintАй бұрын
Hi. i am learning swiftui now by your course, thank you for that. But i faced with problem. My xcode version is 16.2 because i have old mac and after loading your package i have error because you just write Preview but I need to create struct ContentView_Prevew. How cam i fix this problev?
@bonifacy95115 ай бұрын
Why opacity 0.001 instead of 0?
@bjp_for_20247 ай бұрын
IN SWIFT UI we already have async image so why we are using 3rd party ? any specific reason ?
@SwiftfulThinking7 ай бұрын
AsyncImage lacks features, such as disk caching and is not often used in production. SDWebImage explained here: kzbin.info/www/bejne/aYK9hXqXqdh8Y8Usi=h7XwNP7yKxRsAcQW
@bjp_for_20247 ай бұрын
ok @@SwiftfulThinking
@massimilianobellucci7 ай бұрын
While it is pretty easy add caching support to AsyncImage one of the reason to use SDWebImage / SDWebImageSwiftUI or a library like Nuke is because the images you need to fetch are in format like WebP, Heic or other standard not supported out of the box by Apple.
@bjp_for_20247 ай бұрын
@@massimilianobellucci ok will explore that part
@bjp_for_20247 ай бұрын
Why not we have ViewModel And separate layer for api