Skip to content

Commit

Permalink
fix: switch safeareaview from react-native to react-native-safe-area-…
Browse files Browse the repository at this point in the history
…context (#255)
  • Loading branch information
hamzamekk authored Dec 21, 2023
1 parent a1c13b3 commit 500c252
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/core/view.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { styled } from 'nativewind';
import { SafeAreaView as NSafeAreaView, View as RNView } from 'react-native';
import { View as RNView } from 'react-native';
import { SafeAreaView as NSafeAreaView } from 'react-native-safe-area-context';

export const View = styled(RNView);
export const SafeAreaView = styled(NSafeAreaView);

0 comments on commit 500c252

Please sign in to comment.