自娱自乐RN版小说APP历程记录

通过react-native-cli初始化项目

1 npm i -g react-native-cli
2 react-native init <项目名称>

如果mac第一步报错,则需要加sudo。

 

安装一些必要的npm包

  • react-navigation 
    1 yarn add react-navigation
    2 yarn add react-native-gesture-handler
    3 react-native link react-native-gesture-handler

    react-navigation是官方推荐的导航工具,当前版本是3.x 官方要求安装react-native-gesture-handler,并且引入所有的原生依赖

  • react-native-vector-icons
    yarn add react-native-vector-icons
    react-native link react-native-vector-icons

    react-native-vector-icons是一个强大的图标库,看看都有啥图标

  • react-native-scrollable-tab-view
    yarn add react-native-scrollable-tab-view

    这是一款常用的滑动tab组件。

  • react-native-htmlview

    yarn add react-native-htmlview

    非常轻量的显示网页的组件,比原生的webview要轻。

自娱自乐RN版小说APP历程记录

上一篇:hibernate中commit(),flush()、refresh()、clear()操作的含义


下一篇:开源播放器 ijkplayer (六) :Android 下使用 ijkplayer 异常处理思路