1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 04:59:50 +02:00

Adding resource links to SwiftUI (#6240)

* adding contents to swiftui data binding

* adding contents to swiftui - views and modifiers

* adding contents to swiftui - state management

* adding contents to swiftui - navigation

* correcting typo in state management
This commit is contained in:
Enguang Cai
2024-07-27 04:51:25 +08:00
committed by GitHub
parent 4dc4bfb9ee
commit 81aa63c098
4 changed files with 13 additions and 2 deletions

View File

@@ -5,5 +5,6 @@ SwiftUI data binding is a mechanism that creates a two-way connection between a
Learn more from the following resources:
- [@official@Binding](https://developer.apple.com/documentation/swiftui/binding)
- [@official@Apple Tutorials: Passing data with bindings](https://developer.apple.com/tutorials/app-dev-training/passing-data-with-bindings)
- [@video@How to use @Binding property wrapper in SwiftUI](https://www.youtube.com/watch?v=btDMzB5x2Gs)
- [@video@SwiftUI - @Binding Property Wrapper Explained](https://www.youtube.com/watch?v=lgtB3WLEOYg)

View File

@@ -4,5 +4,8 @@ SwiftUI navigation offers a declarative approach to managing app structure and f
Learn more from the following resources:
- [@official@Apple Tutorials: Navigation and modal presentation - Creating a navigation hierarchy](https://developer.apple.com/tutorials/app-dev-training/creating-a-navigation-hierarchy)
- [@official@Apple Tutorials: Navigation and modal presentation - Managing data flow between views](https://developer.apple.com/tutorials/app-dev-training/managing-data-flow-between-views)
- [@official@Apple Tutorials: Navigation and modal presentation - Creating the edit view](https://developer.apple.com/tutorials/app-dev-training/creating-the-edit-view)
- [@article@The complete guide to NavigationView in SwiftUI](https://www.hackingwithswift.com/articles/216/complete-guide-to-navigationview-in-swiftui)
- [@opensource@pointfreeco/swiftui-navigation](https://github.com/pointfreeco/swiftui-navigation)

View File

@@ -5,5 +5,9 @@ SwiftUI state management revolves around property wrappers that handle different
Learn more from the following resources:
- [@official@Managing user interface state](https://developer.apple.com/documentation/swiftui/managing-user-interface-state)
- [@article@Advanced: SwiftUI State Managment](https://medium.com/@canakyildz/advanced-swiftui-state-management-3816d804477e)
- [@official@Apple Tutorials: State Management - Making classes observable](https://developer.apple.com/tutorials/app-dev-training/making-classes-observable)
- [@official@Apple Tutorials: State Management - Responding to events](https://developer.apple.com/tutorials/app-dev-training/responding-to-events)
- [@official@Apple Tutorials: State Management - Managing state and life cycle](https://developer.apple.com/tutorials/app-dev-training/managing-state-and-life-cycle)
- [@official@Apple Tutorials: State Management - Updating app data](https://developer.apple.com/tutorials/app-dev-training/updating-app-data)
- [@article@Advanced: SwiftUI State Management](https://medium.com/@canakyildz/advanced-swiftui-state-management-3816d804477e)
- [@article@A Guide to Managing State in SwiftUI](https://www.waldo.com/blog/manage-swiftui-state)

View File

@@ -4,5 +4,8 @@ SwiftUI views and modifiers form the core of UI development in the framework. Vi
Learn more from the following resources:
- [@official@](https://developer.apple.com/documentation/swiftui/viewmodifier)
- [@official@Views and modifiers: Documentation](https://developer.apple.com/documentation/swiftui/viewmodifier)
- [@official@Apple Tutorials: Views - Using stacks to arrange views](https://developer.apple.com/tutorials/app-dev-training/using-stacks-to-arrange-views)
- [@official@Apple Tutorials: Views - Creating a card view](https://developer.apple.com/tutorials/app-dev-training/creating-a-card-view)
- [@official@Apple Tutorials: Views - Displaying data in a list](https://developer.apple.com/tutorials/app-dev-training/displaying-data-in-a-list)
- [@article@Views and modifiers: Introduction](https://www.hackingwithswift.com/books/ios-swiftui/views-and-modifiers-introduction)