From 3630ffb47e1b21c5a8b7133d01320a28503efc45 Mon Sep 17 00:00:00 2001 From: mrsnow070 Date: Wed, 12 Aug 2020 15:10:19 +0300 Subject: [PATCH] Fix issue on small screen devices This view is overlapping all other views and prevent clicking on the touchables --- src/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index a2f6a7c..0380ae5 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,7 +6,6 @@ import { Text, TouchableOpacity, Platform, - SafeAreaView, I18nManager, FlatListProps, ViewStyle, @@ -209,7 +208,6 @@ export default class AppIntroSlider extends React.Component< return ( - {this.props.data.length > 1 && this.props.data.map((_, i) => @@ -239,7 +237,6 @@ export default class AppIntroSlider extends React.Component< {primaryButton} {secondaryButton} - ); };