diff --git a/.changeset/beige-adults-run.md b/.changeset/beige-adults-run.md new file mode 100644 index 00000000..4d97ad35 --- /dev/null +++ b/.changeset/beige-adults-run.md @@ -0,0 +1,5 @@ +--- +'react-native-bottom-tabs': patch +--- + +fix: expo config plugin import paths diff --git a/packages/react-native-bottom-tabs/src/expo.ts b/packages/react-native-bottom-tabs/src/expo.ts index a558d25e..b199b8fb 100644 --- a/packages/react-native-bottom-tabs/src/expo.ts +++ b/packages/react-native-bottom-tabs/src/expo.ts @@ -1,8 +1,7 @@ -import { - type ConfigPlugin, - createRunOncePlugin, - withAndroidStyles, -} from '@expo/config-plugins'; +import ConfigPlugins from '@expo/config-plugins'; +import { type ConfigPlugin } from '@expo/config-plugins'; + +const { createRunOncePlugin, withAndroidStyles } = ConfigPlugins; const MATERIAL3_THEME_DYANMIC = 'Theme.Material3.DynamicColors.DayNight.NoActionBar';