React Native iOS simulator "Connect to Metro to Develop Javascript"
I'm running a react native app and constantly running into the issue of the app not connecting to the code to do automatic updates.Things I've tried:Reloading main.jsbundle via the following command:...
View ArticleIs It Possible To Add A Custom App To The IOS Control Center?
If one writes a custom app is it possible to be able to add a shortcut to the iOS lock screen? Or is that reserved for Apple sanctioned apps?Currently, one can go into settings and add, say, the voice...
View ArticleReact Native WebView video not playing in iOS
I developed mobile app which has video player in react native. Then I built both Android and iOS app from the react native project. But it's working well in Android but not playing in iOS. If you've...
View ArticleCan I use a react native app published with the apple developer account even...
I hope this is not a duplicate.So I developed my first app for myself using react native and expo. I then wanted to deploy the app on my personal IPhone (possibly without using the app store), but I...
View Articlereact-native-push-notification onRegister fires correctly, but onNotification...
On Android I have no problems, on iOS I am able to catch onRegister event and get the token correctly, but when I test push notifications, the event onNotification seems not working: it never fires.My...
View ArticleReact-Native Element changing size while scrolling
I'm trying to make a react-native scrollview with 3 (or more) elements where the element in the middle of the screen is always 1.75 times the normal element size, and while scrolling the size changes...
View ArticleReact Native - How to load local image using the uri in Image Component?
I know we can load the local image with:<Image source={require('folder/image.png')}/> But i need to load the image like this:<Image source={{uri: 'folder/image.png'}}/> It works for network...
View Articlereact native firebase ios crashes immediately after runing
im trying to set up firebase is my reactnative app usingthis website and its crashes every time after the loading screen i've installed the pods and linked everything is alright and even the app runs...
View ArticleReact Native - AsyncStorage is null
I got these errores when I was adding AsyncStorage dependencies (https://github.com/react-native-community/async-storage)I was using React Native CLI, not expo, I had ran 'react-native link...
View ArticleHow can i regenerate ios and android folder?
How can I regenerate ios and android folder in React Native project?react-native-cli: 2.0.1 react-native: 0.61.2❯ react-native eject error Unrecognized command "eject". info Run "react-native --help"...
View ArticleHow to get initial link for iOS using react native firebase dynamic links?
I am using react-native-firebase:: 5.6.0, I am having issue while getting initial link for iOS device. On android it's working fine. I am using "Firebase Dynamic Links" to redirect user inside login...
View ArticleHow to use KeyboardAvoidingView with FlatList?
I have a FlatList component with an Input inside each row. When I select the input I want it to scroll up above the keyboard.My code:return ( <KeyboardAvoidingView behavior='padding' style={{ flex:...
View Articlereact native firebase save fcm data only when app is died or closed (IOS)
I'm using react-native-firebase for getting new notificationI would like to send from fcm data-only message, but i can't save this data when IOS app is closed or in background.For android the solution...
View ArticleThere was problem loading requested app.it looks like you may be using LAN URL
I am not able to compile my project through expo.I have followed all steps to eject expo for run the app in iOS.Please find below error screen shot for your reference.enter link description here
View ArticleReact native control for user mode switching
My application built in react-native needs to support different user modes. When I am on the screen I don't know the user-mode I am in. My customer are complaining about it. Is there any control in...
View Articleexpo closes when i use Alert.alert()
DescriptionI have a submit button and i use this function to handle the response. When i use the Alert.alert() api, it automatically closes expo without any warning. Expected BehaviorI expected to see...
View ArticleHow to detect 3rd party keyboard in react native (iOS and Android)
In native iOS we can specify shouldAllowExtensionPointIdentifier to disable 3rd party keyboard.-(BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString...
View ArticleReact native determine when text is cut off
I am using react-native with a limited number of lines, that are shown as '...' using <Text numberOfLines={4}> {myText} </Text>Now my issue is, if the text is cut off I would like to show...
View ArticleHow to implement react-native-dark-mode in ios
Hi all i want to try implement react-native-dark-mode but not worked in my project. "react-native": "0.61.5"I Already try like this :import { useDarkMode } from 'react-native-dark-mode' export default...
View ArticleReact Native - How to customize refresh control on IOS platform
I'm trying to redo the default ios refresh control, into something similar on the android platform.Anyone who has experienced or had a good idea is welcome.Thank you very much.Refresh Control...
View Article