diff --git a/docs/boilerplate/app/utils/Utils.md b/docs/boilerplate/app/utils/Utils.md index 986f917cc..cf95006d5 100644 --- a/docs/boilerplate/app/utils/Utils.md +++ b/docs/boilerplate/app/utils/Utils.md @@ -13,24 +13,6 @@ Every app needs a junk drawer. Here you can find a library of utilities that are We sometimes create a separate `app/hooks` folder just for hooks. This is a matter of preference. ::: -### useAppTheme - -A hook that returns various properties and tools relating to theming your app. - -```tsx -const { themed, themeContext } = useAppTheme() - -const $themedStyle: ThemedStyle = (theme) =({ - backgroundColor: theme.colors.background -}) - - - {themeContext} - -``` - -[Full `useAppTheme`](./useAppTheme.tsx.md) - ### useSafeAreaInsetsStyle A hook can be used to create a safe-area-aware style object that can be passed directly to a View.