美文网首页
react native 页面布局完成,但是无法滑动页面

react native 页面布局完成,但是无法滑动页面

作者: 现实梦想_96b0 | 来源:发表于2018-05-28 16:57 被阅读133次

react native 要实现页面滑动,需要添加ScrollView标签,否则无法滑动页面,页面内容显示不全


image.png

这块我还不会上传视频
附上代码:

render(){
        return (
            <View style={{flex: 1, backgroundColor: "#f3f3f3"}}>
                <ScrollView>
                    {/*轮播图*/}
                    <View>
                    {this.bannerImg()}
                    </View>
                    {/*商品分类*/}
                    <View>
                    {this.typeList()}
                    </View>
                    {/*热门推荐*/}
                    <View>
                    <Text style={{fontSize:12,marginLeft:10,marginBottom:5,marginTop:5}}>热门推荐</Text>
                    {/*商品列表*/}
                    {this.goodsList()}
                    </View>
                </ScrollView>
            </View>
        );
    }

相关文章

网友评论

      本文标题:react native 页面布局完成,但是无法滑动页面

      本文链接:https://www.haomeiwen.com/subject/gxvgjftx.html