TypeError:undefined不是构造函数

时间:2020-01-12 17:30:36

标签: javascript react-native

获取TypeError:未定义不是构造函数。

这是我的代码

import React, { Component } from 'react';
import { StyleSheet, View } from 'react-native';
import { StackNavigator } from 'react-navigation';
import LoginScreen from './Screens/LoginScreen';

export default function App() {
   return (
     <View style={styles.container}>
        <appStackNavigator />
     </View>
      );
  }

  const appStackNavigator = new StackNavigator({
    Login: { Screen: LoginScreen },

  });


   const styles = StyleSheet.create({
     container:
     {
       backgroundColor: '#AA00FF',
       flex: 1,
       alignItems: 'center',
       justifyContent: 'center',
     },
   });

这是我收到的错误

TypeError:undefined is not a constructor(evaluating'new_reactNavigation.StackNavigator({Login:{Screen:_LoginScreen.LoginScreen}})')

请帮助调试。

编辑:(帖子主要是代码,因此添加了一些行来支持问题)

0 个答案:

没有答案