From e24f9f7194c4cbe25c49c5d56e839bddeaef5cb4 Mon Sep 17 00:00:00 2001 From: Yousef Abu Shanab <93343012+youzarsiph@users.noreply.github.com> Date: Mon, 22 Jan 2024 01:37:41 -0800 Subject: [PATCH] docs: Update `08-theming-with-react-navigation.md`, add missing import --- docs/docs/guides/08-theming-with-react-navigation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/guides/08-theming-with-react-navigation.md b/docs/docs/guides/08-theming-with-react-navigation.md index d974542763..a7de79d58f 100644 --- a/docs/docs/guides/08-theming-with-react-navigation.md +++ b/docs/docs/guides/08-theming-with-react-navigation.md @@ -38,6 +38,7 @@ import { DarkTheme as NavigationDarkTheme, DefaultTheme as NavigationDefaultTheme, } from '@react-navigation/native'; +import { adaptNavigationTheme } from 'react-native-paper'; const { LightTheme, DarkTheme } = adaptNavigationTheme({ reactNavigationLight: NavigationDefaultTheme, @@ -155,6 +156,7 @@ import { import { MD3DarkTheme, MD3LightTheme, + adaptNavigationTheme, } from 'react-native-paper'; import merge from 'deepmerge';