错误 - 元素类型无效:期望一个字符串(对于内置组件)

时间:2017-07-02 09:21:01

标签: javascript react-native

在开发我的一个React Native项目时出现奇怪的错误。 enter image description here

以下是我正在使用的代码;

    import React, {Component} from 'react';
    import {Text, View, Image, StyleSheet} from 'react-native';
    import {Content, Container} from 'native-base';
    import {Carousel} from 'react-native-looped-carousel';

    export default class AppBody extends Component {
      render() {
        return (
          <Container>
            <Content>
              <Carousel delay={500}>
                <View style={[{
                    backgroundColor: '#BADA55'
                  }
                ]}/>
                <View style={[{
                    backgroundColor: 'red'
                  }
                ]}/>
                <View style={[{
                    backgroundColor: 'blue'
                  }
                ]}/>
              </Carousel>
            </Content>
          </Container>
        );
      }
    }

    module.export = AppBody;

1 个答案:

答案 0 :(得分:0)

来自import的{​​{1}}不正确:

react-native-looped-carousel

修好后,旋转木马不能正常工作。因为您应该为它提供尺寸:

import Carousel from 'react-native-looped-carousel'