2019-11-14 07:46:18
7
0
0
## [React-Native 快速入门指南](https://www.zybuluo.com/hopefrontEnd/note/1357037#222-rest%E5%8F%82%E6%95%B0)
## **未找到解决方法的问题: **
- `react-native` 使用 `tsx` 如何支持修饰器(RN0.59暂时发现github上有很多人有这问题, 还未解决)
- `react
2019-11-14 07:46:18
8
0
0
>
参考: https://www.jianshu.com/p/8db9a3fe0694
参考: [React Native调试技巧与心得](https://www.cnblogs.com/gaosheng-221/p/6954434.html)
参考: [使用模拟器调试react-native步骤(安卓机)](https://www.cnblogs.com/zhangzonghua/p/re
2019-11-14 07:46:18
16
0
0
# react-native-amap3d, 官网: https://github.com/qiuxiang/react-native-amap3d
> [`React Native 高德地图组件的使用(react-native-amap3d)`](https://blog.csdn.net/sinat_17775997/article/details/77847371)
## 安装依赖
>
2019-11-14 07:46:18
13
0
0
## Android( [参考: 在Windows下搭建Android开发环境](https://www.jianshu.com/p/7aa85c861624) )
### [安装最新版本的java jdk](https://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html)
>
配置相关的环境变量:
2019-11-14 07:46:18
14
0
0
>
## 参考: [react-native结合dva的使用](https://www.jianshu.com/p/312a8f345735)
## 参考: github [react-native-dva-starter脚手架](https://github.com/nihgwu/react-native-dva-starter)(该目录下src搬过来改一下)
## 参考: [原理](htt
2019-11-14 07:46:18
292
0
0
## 安装:
> yarn add react-navigation
然后安装 `react-native-gesture-handler` ,如过你正在使用 `Expo` ,那么你可以跳过此步骤,因为他包含在SDK中,否则
> yarn add react-native-gesture-handler
> react-native link
## 如果报以下错误(**注**:
2019-11-14 07:46:18
15
0
0
## [React + TypeScript 50 条规范和经验](https://juejin.im/post/5ce24f8ae51d45106477bd45)
## **编写第三方库的typescript声明文件,提示找不到模块?**
> 把 `tsconfig.json` 里面的 `noImplicitAny` 改成 `false`
## **TypeScript 中的声明文件**
2019-11-14 07:46:18
7
0
0
# **注意: 可以直接在创建项目的时候使用命令**
> `react-native init MyAwesomeProject --template typescript`
## **[优雅地使用TypeScript开发React Native应用](https://juejin.im/post/5cd978ef6fb9a031fe3be6bd)**
****
## 参考:
> http
2019-11-14 07:46:18
25
0
0
>
1. 推荐 11 款 React Native 开源移动 UI 组件
参考: https://cloud.tencent.com/developer/news/301212
参考: https://blog.csdn.net/changsimeng/article/details/64922658
参考: https://www.jianshu.com/p/c7a8f115dca0
**
2019-11-14 07:46:18
3
0
0
>
作者:花生毛豆-
来源:CSDN
原文:https://blog.csdn.net/s2096828/article/details/83744677
版权声明:本文为博主原创文章,转载请附上博文链接!
# **编写第一个 TSX 组件**
```
import React from 'react'
import ReactDOM from 'react-dom'
const A
1/2