Hey Jared, love your videos. I have an awesome suggestion for your next video! There’s a super cool framework called CollectionViewPagingLayout by Amidrew. I’m not too good with 3rd party frameworks. It’s like the modern version of iCarousel. I’d love to watch you help us install and use it if you can please. Thanks!
Hi! Great content! Some feedback to this one would be to implicitly show the changes you made to the files. at 4:57, you move DataStore.swift into the main folder and subsequently change the file name into TaskFiles.swift. I think some would appreciate it if you explain your reasonings!
I've begun learning Swift and I just wanted to thank you! You're breaking things down that not many other channels have, such as WHY the code works the way it does. Big props to you for continuing helping. You're awesome, keep it up! Thanks!
Thank you SO much for this comment! Means a lot. I put a lot of effort into these things, so I’m always happy to get comments like this recognizing my efforts. :]
I was trying to make a custom task app and was stuck for a couple days, after seeing this video I was doing it COMPLETELY wrong. Using a swift view file instead of a file, using a struct instead of classes, lol. I am dropping my ego and gonna start watching tutorials again. This vid def put me in a good route, thanks!
This tutorial was lit! It was my first time learning swiftUI and I didn't knew anything about it! But thanks to you, all the features in the app are working perfectly!
Thanks for this jared. Is there a way to do this but with multiple columns? Say you wanted a list of items and their quantities that you then wanted to add up at the bottom?
Hi!What if on my main screen I have a list(tableview) and when I clicked a button it would present a sheet.Can I have more observedObject throughout my project to have access to the data on other screens too? Obrigado
Hey, one quick question. Everything works, but the lines of the list and the text are not aligned. Like, the "to do item" that I write and insert, is normal, but the lines are a bit to the right. Did I miss something?
It seems like all tutorials that talk about lists only use Strings for each row. How about a complex object, like a Student struct or a Match struct? And then having a second screen to fill-in the details for the struct? Any suggestions?
I want a feature for a app that I’m making so that i can add items into a list kinda think just like in python, after you run the program this feature will make 2 different list that has the contents of the original list say the original list had 10 items and then there are to lists with 5 items each. Im really new to xcode and app development so i would rlly appreciate help.
curious how you would make a row selectable? I tried to add the onTapGesture() to the items as they were being added but the best I could not make it so the whole row was selectable. rather just the Text() that was added to the row.
Nice Video! But you should change the way you create your task id to something like UUID. Right now you‘ll be running into problems because of duplicate ids. Imaging having 4 tasks. The next one you add gets an id of 5 (task count +1) . Then you delete for example task 2. The next task you add will be getting id 5 as well. SwiftUI/Combine needs unique ids to identify each item uniquely for stuff like deleting or moving or it will lead to strange behaviour. ;)
Does anyone have any begginer friendly guides/resources for how to persist the task data? I have been trying to work through persisting data for a simple application like this and everything I can find just wants you to enter the code without explaining WHY stuff is entered as it is like he explains here
Hello! Great video - THX!!! I would love to connect this simple app to a firebase database and allow the app to be use in multiple devices while allowing real time data updates. Can someone please help me with this or direct me to a tutorial?
Oh, huh, yeah, just tested it without combine and it totally works... sorry, read on a website that it needed it... guess not, haha. Thanks for the heads up.
Thanks for the amazing tutorial. However, I have a problem. When I move the task of adding new item into another view the listview doesn't update, but the list itself does! So I made an another view where I have a textfield and a button, when I click the button a new item is added to the list and app is navigated to the list view, but the added item doesn't show up. Any idea why? Here is the project if you have time to take a look: github.com/abdusalamApps/ToDo-SwiftUI
Bro. Great, I like your videos, but I appreciate the sub at less in English, because I really don't speak English well, and the sub help me to understand you P.D: I copy y paste this from google translate xD
@@Archetapp Jajaja Yes very helpful and I like how you explained, I guess UA-cam add the sub because in others of yours videos have sub, i don understands in this not. I Speak Spanish 🤘
Sup guys, happy to be back doing these type of videos. :] If y'all have any questions or suggestions for future videos or ideas, let me know! :D
Jared Davidson Hay friend! I want to save & display time & date in UITableView cell core data. Please make a video.
Hey Jared, love your videos. I have an awesome suggestion for your next video! There’s a super cool framework called CollectionViewPagingLayout by Amidrew. I’m not too good with 3rd party frameworks. It’s like the modern version of iCarousel. I’d love to watch you help us install and use it if you can please. Thanks!
Hi! Great content!
Some feedback to this one would be to implicitly show the changes you made to the files. at 4:57, you move DataStore.swift into the main folder and subsequently change the file name into TaskFiles.swift. I think some would appreciate it if you explain your reasonings!
I've begun learning Swift and I just wanted to thank you! You're breaking things down that not many other channels have, such as WHY the code works the way it does. Big props to you for continuing helping. You're awesome, keep it up! Thanks!
Thank you SO much for this comment! Means a lot. I put a lot of effort into these things, so I’m always happy to get comments like this recognizing my efforts. :]
Archetapp you can see the effort!
Glad to have you back!
Good to be back. :]
Your explanation is really really easy to understand! One of the best I've ever watched on UA-cam! Thank you Jared!
Great to have you back, thanks for your tutorials!
I was trying to make a custom task app and was stuck for a couple days, after seeing this video I was doing it COMPLETELY wrong. Using a swift view file instead of a file, using a struct instead of classes, lol. I am dropping my ego and gonna start watching tutorials again. This vid def put me in a good route, thanks!
Thanks Jared, this video popped up and I couldn’t help but fire up Swift and follow along. I still have the space game that you posted many years ago.
That’s awesome man!! Been a while, haha. :]
Thank you very much Big Man. I joined a competition and I came first , you teach me how to write code.
That’s awesome man!
Thank you so much for this video Jared! Really detailed steps which helped me a lot as I am new to Xcode.
So glad to have you back! I really enjoy watching your videos!
When you've become a master of SwiftUI?
Jared: Last night
...It's great to see you back 🤘🏼
😉
Such an wonderful explanations for each line of code! Thank you so much!!!
Great to see you back Gared. Your videos helped me create a mediation app for my final year project in college :)
Very wonderful video. I learned a lot. You are a world class teacher
This tutorial was lit! It was my first time learning swiftUI and I didn't knew anything about it! But thanks to you, all the features in the app are working perfectly!
Yay! So happy to see more videos from you! This is perfect timing because I'm looking to get into Swift UI!
It’s been a long time!! You helped me tons while I was learning to code with Swift. Really nice see out there still growing. Best of luck.
Welcome back, Jared!
Good to have you back kid!
Thanks for this jared. Is there a way to do this but with multiple columns? Say you wanted a list of items and their quantities that you then wanted to add up at the bottom?
Thanks Jared. Nice to see you again. It was a long time ago :)
Jared, do you know if it's possible to move an item between List Sections in SwiftUI? I haven't found any tutorials anywhere online
Very simple, thanks my mannn
Welcome back Jared
Would it be possible to have a drop down list of items that the user would select from to populate their to do list instead of typing in a text field?
Good video & Great to see you back man :)
Mayank Gupta Great to see you too man! :]
@@Archetapp Haha
Very good and straight-forward, thanks!
Is it possible to add checkmarks to that list? Or do you have to create another type of list instead?
Hi!What if on my main screen I have a list(tableview) and when I clicked a button it would present a sheet.Can I have more observedObject throughout my project to have access to the data on other screens too? Obrigado
Welcome back, only noticed today
Will You advise how store tasks for exampla to UserDefault? Thanks
Hey, one quick question.
Everything works, but the lines of the list and the text are not aligned.
Like, the "to do item" that I write and insert, is normal, but the lines are a bit to the right. Did I miss something?
Great tutorial man learned a lot
Tell about different architectures. MVC, MVVM, VIPER etc.
P.s. Welcome back buddy :)
It seems like all tutorials that talk about lists only use Strings for each row. How about a complex object, like a Student struct or a Match struct? And then having a second screen to fill-in the details for the struct? Any suggestions?
I want a feature for a app that I’m making so that i can add items into a list kinda think just like in python, after you run the program this feature will make 2 different list that has the contents of the original list say the original list had 10 items and then there are to lists with 5 items each. Im really new to xcode and app development so i would rlly appreciate help.
Very clean video. Thanks a lot..
curious how you would make a row selectable?
I tried to add the onTapGesture() to the items as they were being added but the best I could not make it so the whole row was selectable. rather just the Text() that was added to the row.
Nice Video! But you should change the way you create your task id to something like UUID. Right now you‘ll be running into problems because of duplicate ids. Imaging having 4 tasks. The next one you add gets an id of 5 (task count +1) . Then you delete for example task 2. The next task you add will be getting id 5 as well. SwiftUI/Combine needs unique ids to identify each item uniquely for stuff like deleting or moving or it will lead to strange behaviour. ;)
My friend, welcome back, I hope I won't write a code quickly 🙈
Request to update with a way to save the list to the device? Thanks, great tutorials!
thank you so much! it was really helpful
Great Tutorial, Thanks
welcome back mate.
Thanks. :]
Wow finally some help thank you.
Welcome back. How was Brazil?
Welcome back
Does anyone have any begginer friendly guides/resources for how to persist the task data? I have been trying to work through persisting data for a simple application like this and everything I can find just wants you to enter the code without explaining WHY stuff is entered as it is like he explains here
Welcome back, brother.
Welcome back!
Welcome back!!!!
Урааа!) очень круто что ты вернулся )
can you make a tutorial on how to clone notion or taskade.com ?
hey welcome back!!!
Miss You :')
Missed you too, haha. ;)
Great tutorial, thank you!
Hi Jared.
It is great to see you again.
Please try to do CoreData with CloudKit
I want to learn how to do it.
Thanks
Look after yourself
Hello! Great video - THX!!! I would love to connect this simple app to a firebase database and allow the app to be use in multiple devices while allowing real time data updates. Can someone please help me with this or direct me to a tutorial?
Welcome again.
Such a good video
Thanks!
Why are you importing combine when you don't need it because it works with importing SwiftUI only
Oh, huh, yeah, just tested it without combine and it totally works... sorry, read on a website that it needed it... guess not, haha. Thanks for the heads up.
can you keep updating this TodoApp with new features in new tutorials?
Sure! I thought about that as well.
Awesome I’ll be waiting for your future videos
Thanks! :)
Muito bom, eu não sabia que dava pra fazer isso.
Thanks for the amazing tutorial. However, I have a problem. When I move the task of adding new item into another view the listview doesn't update, but the list itself does!
So I made an another view where I have a textfield and a button, when I click the button a new item is added to the list and app is navigated to the list view, but the added item doesn't show up. Any idea why?
Here is the project if you have time to take a look:
github.com/abdusalamApps/ToDo-SwiftUI
Thansk for tutorial..
Well Explain!
Why Brazil? Ah you’re a Mormon missionary.
thanks
Bro. Great, I like your videos, but I appreciate the sub at less in English, because I really don't speak English well, and the sub help me to understand you P.D: I copy y paste this from google translate xD
Haha, that seems like a lot of work! Glad you find the videos helpful still! what language do you speak?
@@Archetapp Jajaja Yes very helpful and I like how you explained, I guess UA-cam add the sub because in others of yours videos have sub, i don understands in this not. I Speak Spanish 🤘
It’s like apple reinvented android’s xml😂😅
6:38
Please make one about swift not swiftUI
Welcome back!
Thanks!