All Questions
20 questions
1
vote
1
answer
1k
views
How to expand only one item from a list item accordion in react native?
I started to learn React Native lately and I'm trying to build my first app, but i'm facing this issue and I don't know how to solve it, I used library React Native Elements and ListItem.Accordion and ...
4
votes
2
answers
10k
views
How can I create dynamic routes/ screens with React Native?
I want to create dynamic routes similar to the way you can with react-router using the slash colon as so:
<Route exact path="/user/:_id" component={UserPage} />
How does this work ...
1
vote
1
answer
2k
views
React Native Version 0.64 - No podspec found for `FBReactNativeSpec`
React Native Version 0.64
[!] No podspec found for FBReactNativeSpec in `../node_modules/react-native/Libraries/FBReactNativeSpec
0
votes
2
answers
1k
views
How to create nested array in realm without key(React Native)
{
"a": [
[
{
"_id": "57e55b64016c3551c025abc1",
"title": "Main Campus"
},
{...
1
vote
0
answers
366
views
React Native Picker "com.facebook.react.bridge.NoSuchKeyException: label"
My app crashes on launch, after installing "@react-native-community/picker" and auto linking.
I get the following errors:
08-12 18:40:27.528 25856 25856 E AndroidRuntime: com.facebook.react....
1
vote
1
answer
437
views
Convert javascript UI library into React Native component [closed]
I have JavaScript library which i using in Cordova applications.
Library create drawer with HTML/JS/CSS and drag events.
https://github.com/roman-rr/cupertino-pane
I want use this library/code in ...
1
vote
0
answers
404
views
React Native run android error Could not find method google()
i use Android studio 2.3.3
npm -v 6.12.0
react-native --version 3.0.4
buildscript {
ext {
buildToolsVersion = "25.0.3"
minSdkVersion = 15
compileSdkVersion = 25
...
1
vote
0
answers
2k
views
React Native (iOS) save file to directory & open with option
I have two question;
1) I want to save a file on my app like screenshots above. I checked react-native-fs and react-native-document-picker libraries but they can't help me about this issue. (or I can'...
1
vote
1
answer
290
views
React native - change state of dynamic elements
I'm trying to loopover an array to render items in a list (in react native). Every item has a button. How can I change the background color of this specific button, when someone clicks it?
I already ...
4
votes
0
answers
1k
views
React-native expo vector icons not showing on android
In my code I have the following import statement:
import { FontAwesome, Ionicons } from '@expo/vector-icons';
and I am using it like this:
< Ionicons name='md-checkmark-circle' size={50} />
...
-1
votes
1
answer
182
views
ract-native app not updating when edit the content to display
I have created a react-native app and I have executed after lots of trials. But when i'm editing the content of the app. It is taking time or not updating the content what i have changed on App. ...
0
votes
2
answers
2k
views
React Native application; Error starting packager: Error: EPERM: operation not permitted
WINDOWS 10
I've been trying to find the solution for this all day and haven't found a suitable answer. I am attempting to create a react native project. Earlier today, I was able to get past the point ...
0
votes
1
answer
162
views
How to handle performance for 1000's of components on the screen in React Native?
I am making an app where there is a 32x64 grid and when you click any square it will light up. I want the user to be able to drag their finger and it fills up all the squares the finger touches.
I am ...
-3
votes
1
answer
902
views
is it safe and good practice to use third party libraries for React Native UI? [closed]
I am new in React Native. I am making hands on demos to learn react native.
I go through basic components and style. Facebook is not provieing all rich component for making rich UI. But many third ...
2
votes
4
answers
2k
views
Why redux is required for React Native mobile App?
I am experience developer of native android app but I am entry level developer for React Native.
I am familiar with basic but not able to understand why Redux is used with React Native?
I want ...