From 0c5c6a20179e22796d602d186c0c852be657bde7 Mon Sep 17 00:00:00 2001 From: Zach Date: Fri, 27 Sep 2024 11:10:13 -0600 Subject: [PATCH] Update usage-overview.md --- documentation/usage-overview.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/usage-overview.md b/documentation/usage-overview.md index 82b1157..857e5e4 100644 --- a/documentation/usage-overview.md +++ b/documentation/usage-overview.md @@ -198,6 +198,7 @@ struct SlicingView: View { - **Use `AppState` in SwiftUI Views**: Property wrappers like `@AppState`, `@StoredState`, `@FileState`, `@SecureState`, and others are designed to be used within the scope of SwiftUI views. - **Define State in Application Extension**: Centralize state management by extending `Application` to define your app’s state and dependencies. - **Reactive Updates**: SwiftUI automatically updates views when state changes, so you don’t need to manually refresh the UI. +- **[Best Practices Guide](best-practices.md)**: For a detailed breakdown of best practices when using AppState. ## Next Steps