Why use StyleSheet.create ? When starting a new project ( react-native init test , the project comes with style as follows.
const styles = StyleSheet.create({
container: {
},
welcome: {
fontSize: 20,
textAlign...
My app React Native is managed by Redux .
I need to run the _verificaLogin() function automatically by connect when my app is rendering. The way I did it is not working, I think props has not received the functi...
I'm developing an application in javascript (for android) and I would like to use mysql as the database for this application, but I was not able to use mysql in the same code so I did some searches that indicated separating by backend and fronte...
I'm having a question, I'm starting with react native and I'm building an app that contains some components and uses react-navigation. The question is:
From this component that renders several items, when I click I want to receive this data i...
This is the following, I created a system that uses some Image components and loads the images from the internet.
I just want the images to appear even when the system is offline.
I noticed that there is a cache of images when I acc...
I have the code:
import React, { Component } from 'react';
import { ScrollView } from 'react-native';
import { Tile, List, ListItem } from 'react-native-elements';
class UserDetail extends Component {
constructor(props){
super(props);
thi...
Constantly, I'm having the error:
Can not add a child that does not have a YogaNode to a parent without a measure function! (Trying to add a 'ReactRawTextShadowNode' to a 'LayoutShadowNode')
I did not understand the logic of the error,...
When creating a react native project and try to execute it with the * react-native run-android * command this error appears, it does not matter if it is direct on the physical device or the AVD.
I have already created several projects and the...
I have a problem running a react-native app on my phone.
With everything configured I run
react-native start
react-native run-android
and the following error appears:
05:32:56 E / adb: adb server version (32) does not match this cl...
I'm studying react native and need to compile an app for android and ios.
I would like to know if I can develop everything in the windows environment and then just copy the files to a virtual machine running OS X to compile and publish the app...