Skip to content

Commit

Permalink
Add mock SafeAreaView for windows and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
janicduplessis committed Aug 6, 2020
1 parent 8407a26 commit aca0b49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/SafeAreaView.macos.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { View } from 'react-native';

export const SafeAreaView = View;
3 changes: 3 additions & 0 deletions src/SafeAreaView.windows.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { View } from 'react-native';

export const SafeAreaView = View;

0 comments on commit aca0b49

Please sign in to comment.