clwy-react-native-tableview-simple 4.5.3 → 4.5.4

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.3",
5
+ "version": "4.5.4",
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",
@@ -205,13 +205,15 @@ const Section: React.FC<SectionInterface> = ({
205
205
  if (footer && withSafeAreaView) {
206
206
  return (
207
207
  <View style={styles.sectionfooter}>
208
- <SafeAreaView>
209
- <Text
210
- allowFontScaling={allowFontScaling}
211
- style={localStyles.sectionfooterText}>
212
- {footer}
213
- </Text>
214
- </SafeAreaView>
208
+ <SafeAreaProvider>
209
+ <SafeAreaView>
210
+ <Text
211
+ allowFontScaling={allowFontScaling}
212
+ style={localStyles.sectionfooterText}>
213
+ {footer}
214
+ </Text>
215
+ </SafeAreaView>
216
+ </SafeAreaProvider>
215
217
  </View>
216
218
  );
217
219
  }