clwy-react-native-tableview-simple 4.5.1 → 4.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "clwy-react-native-tableview-simple",
3
3
  "description": "React Native component for TableView made with pure CSS",
4
4
  "homepage": "https://github.com/Purii/react-native-tableview-simple",
5
- "version": "4.5.1",
5
+ "version": "4.5.2",
6
6
  "author": "Patrick Böder <hello@patrickpuritscher.com>",
7
7
  "scripts": {
8
8
  "clean": "watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn",
@@ -8,7 +8,6 @@ import {
8
8
  } from 'react-native';
9
9
  import { THEMES, ThemeContext, THEME_APPEARANCE } from './Theme';
10
10
  import { StringWithAutocomplete } from '../../CustomTypes';
11
- import { SafeAreaProvider } from 'react-native-safe-area-context';
12
11
 
13
12
  export interface TableViewInterface {
14
13
  children?: React.ReactNode;
@@ -43,9 +42,7 @@ const TableView: React.FC<TableViewInterface> = ({
43
42
  }
44
43
  return (
45
44
  <ThemeContext.Provider value={themeMode}>
46
- <SafeAreaProvider>
47
- <View style={[styles.tableView, style]}>{children}</View>
48
- </SafeAreaProvider>
45
+ <View style={[styles.tableView, style]}>{children}</View>
49
46
  </ThemeContext.Provider>
50
47
  );
51
48
  };