React Native Android运行错误

时间:2017-12-20 21:18:45

标签: android reactjs react-native react-native-android

我正在尝试在android模拟中运行我的项目,它显示错误红色屏幕,但iOS运行完美。

我的屏幕只有一个包含文字的视图

import React, { Component } from 'react'
import {
    View,
    Text,
} from 'react-native'

const Test = ({navigation}) => {
    return(
        <View>
            <Text>Hola</Text>
        </View>
    )
}

export default Test

并在index.js中调用de screen

import { AppRegistry } from 'react-native';
import Test from "./src/test"
AppRegistry.registerComponent('SanSilvestre', () => Test);

屏幕截图

Attempted to redefine property 'padding'. (http://10.0.2.2:8081/index.bundle?platform=android&dev=true&minify=false:65166)

Attempted to redefine property 'padding'. (http://10.0.2.2:8081/index.bundle?platform=android&dev=true&minify=false:65166)

screen shot

感谢

1 个答案:

答案 0 :(得分:0)

您的代码中可能存在语法错误,您在同一对象中定义了两次填充。