Hey everyone, I hope you enjoy this video. As a side note, you can even enhance this code to add interactive widgets (I have a video about it, check it out). You can also add a filter to the home view to change the currently selected month. Additionally, you can modify the progress indicator to something like a streak indicator, and so on. Please let me know if you like this type of complete app tutorial videos. Have a great day, everyone 🎉
@RethinkingStudio14 күн бұрын
I've learned a lot of swiftui skills from your video. thanks a lot .always support you on patreon.
@selvarajant9 күн бұрын
Yes we like such tutorial videos. 👍 Lots of love for your work. 💌 so inspiring!
@initWorks-jp16 күн бұрын
Excellent work. I was very impressed. I will support it in Patreon as a token of my appreciation. From Japan. I am not good at English. I hope I have conveyed my gratitude well.
@kwiky564315 күн бұрын
W
@Kavsoft15 күн бұрын
Thank you very much!
@festojoseph107115 күн бұрын
Great content as usual.
@Thr0nSK15 күн бұрын
finally different music, thanks!
@motostreetwear182115 күн бұрын
Thanks master. You’re incredible
11 күн бұрын
Is SwiftData is ❤😉
@ShujiFukumoto7 күн бұрын
Hello. Thank you for excellent video! I'm afraid that the notification request is remained although the habit entry is deleted.
@Kavsoft6 күн бұрын
Ah, yes, I just realized I forgot to add this line to the delete function. Simply add “cancelNotifications(habit.notificationIDs)” before the dismiss() call on the delete button, and you’re all set. Thanks for reminding me!
@DEV_XO15 күн бұрын
🔥🔥🔥
@hendoitechnologies14 күн бұрын
also post iOS App building for absolute beginners
@hendoitechnologies14 күн бұрын
kindly post SWIFT full course video for absolute beginners
@ch.karankadyan12 күн бұрын
sir next video on a clipboard app which works on both iphone and ipad seamlessly with apple id integration like universal clipboard on apple but your app have history of all copied text and screenshots
@IamCutePanda14 күн бұрын
what was the speed of the video ? i mean you cant keep all this code in your mind . I mean i am trying to create my own app. and ! i was struggling maybe half of a day with one small problem - frames for text editor were thick in dark mode .. TextEditor(text: $customText) .padding(8) .background( ) .overlay( RoundedRectangle(cornerRadius: 8) .strokeBorder(Color(UIColor.systemGray), lineWidth: 0.9) / ) .frame(height: 75) .padding(.horizontal) and so on! try to resolve the task above !) the same with creation Save as Pdf function ... hard to believe that you keep in mind all this SwiftUi stuff ( and updated too ) + uses it in mind ... instantly!
@alexandrecools946316 күн бұрын
Hi! Is there any particular reason not to make a view model or something else to organize the code (logic, saving, etc)? Very interesting video, thanks!
@Kavsoft15 күн бұрын
I frequently switch between MVVM and MV patterns. I’ll use MVVM when there are numerous backend calls to make, but since this project involves simple context-based calls, I believe MV is sufficient!