React Native
BradyCC
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
React Native 常用语法、Flexbox布局
使用 react JSX 语法 使用 react-native StyleSheet 设置样式(驼峰写法) 使用 react-native Dimensions 获取设备宽、高、分辨率 使用 react-native Platform 获取设置操作系统 // App.js import React from 'react'; import { SafeAreaView, Style...原创 2020-03-13 17:55:24 · 259 阅读 · 0 评论 -
React Native macOS 开发、运行环境配置及项目初始化
详情可参考官方文档。 一、开发环境配置 安装 Homebrew # 安装 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" # 更新 brew update 注:如果更新较慢,需要替换数据源,具体可参考。 安装 node watchm...原创 2020-03-13 15:15:33 · 640 阅读 · 0 评论 -
React Native react-native-splash-screen 启动屏库
RN 项目 安装 react-native-splash-screen 启动屏库 # 安装 react-native-splash-screen yarn add react-native-splash-screen // package.json { "name": "RNApp", "version": "0.0.1", "private": true, "scripts...原创 2019-07-13 15:52:47 · 1779 阅读 · 0 评论 -
React Native 环境搭建 — macOS开发环境
React Native 环境搭建 — macOS开发环境 必安依赖: node、react-native-cli、Xcode # 安装 node sudo npm i -g node # 安装 react-native-cli sudo npm i -g react-native-cli 安装成功后,检测版本。 Xcode 在 AppStore 中下载安装 以上安装完成后,创建 re...原创 2019-07-06 12:18:34 · 432 阅读 · 0 评论 -
React Native react-native-swiper 轮播图库
RN 项目 安装 react-native-swiper 轮播图库 # 1.5.14 版本 yarn add react-native-swiper // package.json { "name": "RNApp", "version": "0.0.1", "private": true, "scripts": { "start": "react-native s...原创 2019-07-11 17:58:06 · 983 阅读 · 0 评论 -
React Native react-navigation 路由导航库
RN 项目 安装 react-navigation 路由导航库 react-native-vector-icons 图标库 # 安装 react-navigation yarn add react-navigation react-native-gesture-handler react-native-vector-icons // package.json { "name": "RN...原创 2019-07-11 19:39:30 · 685 阅读 · 0 评论 -
React Native react-native-video 视频库
RN 项目 安装 react-native-video 视频库 # 安装 react-native-video yarn add react-native-video // package.json { "name": "RNMyBaby", "version": "0.0.1", "private": true, "scripts": { "start": "rea...原创 2019-08-04 17:35:52 · 876 阅读 · 0 评论 -
React Native react-native-webview 跨平台WebView库
RN 项目 安装 react-native-webview 跨平台webview库 # 安装 react-native-webview yarn add yarn add react-native-webview // package.json { "name": "RNMyBaby", "version": "0.0.1", "private": true, "script...原创 2019-08-04 17:46:10 · 4768 阅读 · 0 评论
分享