I am using a TabView from react-native-tab-view, it works fine when when I am running my application with expo and scan the QR Code with my android device, but when I generate an apk and open the application, it does not work.
return isLoading ? (<LoadingComponent /> ) : person? (<TabView navigationState={{ index, routes }} renderTabBar={renderTabBar} renderScene={renderScene} onIndexChange={setIndex} initialLayout={{ width: layout.width }} style={{ marginBottom: 20 }} /> ) : (<View></View> )}