Wrap up: our SwiftUI project is complete
Wrap up: our SwiftUI project is complete êŽë š
Updated for Xcode 15
I'm not going to claim this was an easy project, particularly because SwiftUI forces us to think in such a different way from UIKit. Not only do we have the declarative, reactive approach to logic, but we also have @State
, environment objects, two-way bindings, and more to deal with â it's a combination of powerful new Swift language features in tandem with a whole new UI framework.
In this project I've tried to expose you to a number of different things all at once, including lists, stacks, forms, navigation, alerts, and more. But even though we've only built a simple app, I hope you can appreciate how powerful SwiftUI is, and how it makes it easy to build real-world projects quickly.
If you've enjoyed this brief exposure to SwiftUI and want to learn more, I have a massive, free course to teach you all about it called the 100 Days of SwiftUI. You can find that here
And if you'd like to see my completed version of this project, you can find it here on GitHub: twostraws/iDine
.
Challenges
One of the best ways to learn is to write your own code as often as possible, so here are three ways you should try your new knowledge to make sure you fully understand what's going on:
- Customize the âOrder Thisâ button with a custom font, background, and more.
- Add âPickup timeâ to
CheckoutView
, with the options âNowâ, âTonightâ, and âTomorrow Morningâ. - Add a Favorite navigation bar item to
ItemDetail
and a Favorites tab showing them all.