在开发我的一个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;
答案 0 :(得分:0)
来自import
的{{1}}不正确:
react-native-looped-carousel
修好后,旋转木马不能正常工作。因为您应该为它提供尺寸:
import Carousel from 'react-native-looped-carousel'