Тёмный
EvrythingSwiftUI
EvrythingSwiftUI
EvrythingSwiftUI
Подписаться
Hi to all of you!
My channel EvrythingSwiftUI, is dedicated to creating videos on Swift and SwiftUI that make working with the language enjoyable, straightforward, and easy.
Here, I attempt to make ideas easier to grasp.
My objective is to expand the untapped potential of SwiftUI and simplify complicated projects.
For more information or to get in contact with me visit:

www.linkedin.com/in/elvis-reja-961022253/
Комментарии
@cembayat8104
@cembayat8104 Месяц назад
its good job 💯
@EvrythingSwiftUI
@EvrythingSwiftUI Месяц назад
Thank you! Part 2 will be uploaded soon
@alexgilabertrivas9734
@alexgilabertrivas9734 2 месяца назад
hi, I have this error: Publishing changes from background threads is not allowed; make sure to publish values from the main thread (via operators like receive(on:)) on model updates.
@EvrythingSwiftUI
@EvrythingSwiftUI 2 месяца назад
Hey there! The reason why you're getting this error is because any changes you are making to the UI need to be in executed in the main thread. To fix this either add "MainActor" to the function which automatically will run that function in the main thread or encapsulate the section where the UI changes is being made with: "DispatchQueue.main.async{}" Please let me know if you need extra help, i will be happy to provide you advice regarding this. Best of luck!
@alexgilabertrivas9734
@alexgilabertrivas9734 2 месяца назад
Hi, this video really help me. Can I follow you on instagram to ask you a few things about swift? Thank you so much
@hew3999
@hew3999 2 месяца назад
Link github, please
@EvrythingSwiftUI
@EvrythingSwiftUI 2 месяца назад
Thank you for watching my videos. Here is the link to the source code: github.com/elvisrexhaa/Firebase_Authentication
@sergiovinhal5934
@sergiovinhal5934 2 месяца назад
Good didactic, well explained. Could you write code to convert views to PDF to generate reports ?
@EvrythingSwiftUI
@EvrythingSwiftUI 2 месяца назад
Thank you. I can do this but it will be a tutorial which I will make later on. I am currently focusing on videos which can be utilised everyday when making apps.
@atnguyenucchi9776
@atnguyenucchi9776 2 месяца назад
i see the error in the end of video :v.
@EvrythingSwiftUI
@EvrythingSwiftUI 2 месяца назад
Hey there! What error are you specifically stating?
@Hgvpuncher
@Hgvpuncher 2 месяца назад
this is a copy paste tutorial from AppStuff channel where he is doing the same thing with the same API... Be more original please and create your own content instead of copy pasting stuff
@EvrythingSwiftUI
@EvrythingSwiftUI 2 месяца назад
Apologies for you thinking this. If you are to make an API call for cryptocurrency the process will be the roughly the same throughout and also coinGecko is the main api that can be used to download the symbol images.
@sudhakard5273
@sudhakard5273 3 месяца назад
Good video. But network class should be of type Generic and it accepts any type of response. also how to handle errors when we use Combine
@EvrythingSwiftUI
@EvrythingSwiftUI 3 месяца назад
Hi there! Thank you for the feedback. It is important to note that the reason as to why i did not make my network class of type generic is because i am only working on one data model in this example. Making the network class generic is unnecessary complexity and not needed. As for accepting any type of response, this is usually necessary if i am working with multiple data models. Finally, to handle errors with combine we use "try map" to handle the response, status code, data and more. I will have a video on this later on.
@yifanwu7655
@yifanwu7655 3 месяца назад
Thank you very much for your course,I learned step by step and learned a lot
@EvrythingSwiftUI
@EvrythingSwiftUI 3 месяца назад
Glad to hear that! I appreciate the feedback