diff --git a/src/components/Colors.tsx b/src/components/Colors.tsx index 07c8fbd..c1a1b70 100644 --- a/src/components/Colors.tsx +++ b/src/components/Colors.tsx @@ -2,7 +2,7 @@ import { BlurView, BlurViewProps } from '@react-native-community/blur'; import { THEME_COLOR } from 'CONSTANTS'; import React, { PropsWithChildren } from 'react'; import { useContext } from 'react'; -import { ColorSchemeName, Platform, StyleSheet, useColorScheme } from 'react-native'; +import { ColorSchemeName, Platform, StyleSheet, View, useColorScheme } from 'react-native'; const majorPlatformVersion = typeof Platform.Version === 'string' ? parseInt(Platform.Version, 10) : Platform.Version; @@ -108,14 +108,8 @@ export function ColoredBlurView(props: PropsWithChildren) { : scheme === 'dark' ? 'extraDark' : 'xlight' } /> ) : ( - + ); } \ No newline at end of file