Questions tagged [react-native-ios]

React-native-ios: refers everything related to react-native ios development. Component, Styling, Routing and Native API access in react-native ios.

React-native is a library that enables iOS device applications to be written in rather than . When necessary you can fall back to .

3161 questions
1
vote
2 answers

How I can add Mixpanel in react native expo project?

I am getting this below error null is not an object (evaluating RNMixpanel.sharedInstancesWithtoken) How I can setup Mixpanel in expo?
Rubel hasan
  • 2,522
  • 1
  • 13
  • 22
1
vote
0 answers

How to remove default header in native react Drawer?

I have tried {header: null} and {headerMode: null} but those are not working. Can anyone provide solution for removing default header in native react drawer. The above mentioned are working for stack navigator but those are working for react native…
1
vote
0 answers

Expo:Upload to Apple App Store "Skip waiting for build processing"

After a successful upload of an Expo iOS build to the Apple App Store using expo:upload, some of the output are: ... Successfully uploaded the new binary to App Store Connect Skip waiting for build processing This means that no changelog will be…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
1
vote
1 answer

react-native run-ios build is extremely slow

I ran the react-native run-ios command to build my react-native app and it doesn't seem to be building(waited 20 mins). I have not encountered this issue on the same project in the past and am stumped. Previously, I had run the same app on the same…
Parth Patel
  • 135
  • 1
  • 4
  • 12
1
vote
2 answers

How to render the image in browser in react-native

I am getting the image path in the response from API and on the click of thumbnail I want to open the image in browser.
user11426267
  • 361
  • 4
  • 7
  • 13
1
vote
1 answer

RN 0.61.1 Build failed 'React/RCTBridgeModule.h' file not found

To the mods: before you mark this as a duplicate, let me assure you that I've gone over every similar thread, but that I needed to create one because the answers don't apply to the RN version I'm using After upgrading from 0.60.5 to 0.61.1 I'm…
Kenny Meyer
  • 7,849
  • 6
  • 45
  • 66
1
vote
1 answer

Logging to JavaScript console from AppDelegate.m with React Native

Is it possible to put logging statements into AppDelegate.m which will print out in the Chrome JavaScript debugger console when using React Native?
kolistivra
  • 4,229
  • 9
  • 45
  • 58
1
vote
1 answer

React Native: Using "setState" within Promise

I'm trying to update the state of a React Component, based on data retrieved through an API. However, I am unable to use the setState function from within the promise, as React Native always returns the following error "Type Error: _this2.setState…
Vilitaria
  • 107
  • 9
1
vote
3 answers

How to set Image to take the full size screen with header in react navigation?

I Have screen contain an image and I want to take the full-size screen with header? I just use position: "absolute" but it's not working to wrap the header, and I can't use header: null because I want the back button to appear! so how can I handle…
1
vote
0 answers

Native module cannot be null on react-native-ios

When React-native application is running on ios simulator, build is showing successful but app is not launching and showing the given Error....."Native module can not be null" enter image description here please help me to find out the solution
1
vote
1 answer

Unable to launch com.myappname on iPhone through Xcode

When, I'm trying to launch my app on real device iPhone, I'm getting an error: "Unable to launch com.myappname": also I noticed weird behavior, when running app on simulator, instead of running app immediately, Xcode first shows me such window:…
Lucky_girl
  • 4,543
  • 6
  • 42
  • 82
1
vote
1 answer

RNOneSignal.configure is not a function after updating OneSignal to the latest version

I updated React native OneSignal from 3.2.12 version to 3.3.2 version, after that I started getting an error during app launch. Here is an error: RNOneSignal.configure is not a function " Here is my code: import OneSignal from…
Lucky_girl
  • 4,543
  • 6
  • 42
  • 82
1
vote
1 answer

Make image smaller, than bigger, than back to normal animation in React Native

I need to make an animation, which will make image smaller, then will make image a little bit bigger and then back to normal, this animation should repeat every time, when user is pressing on the button. Here is what I already have, currently it…
Lucky_girl
  • 4,543
  • 6
  • 42
  • 82
1
vote
2 answers

How can I fix an Xcode build that works perfectly on simulator/device, but fails on archive?

Weird-Ass Linking-Related Bug When I try to make an archive build in Xcode 10.3 Environment info RN: 0.59.3 Xcode: 10.3 React Native Gesture Handler (RNGH): 1.4.1 React-Navigation: 3.11.0 React Native info…
1
vote
2 answers

How to keep in sync code push and appstore's version?

I tried Code Push with react-native for the first time and I have a below question. Let's say I have published an app with version 1.2.0 on AppStore and I push a code-push version for that specific target (1.2.0). Now, the update popup is shown to…