Aaron Young

Results 135 issues of Aaron Young

```js new Promise((resolve) => { console.log(1) resolve() console.log(2) }).then(() => { console.log(3) }) console.log(4) ``` > 输出顺序:1 2 4 3 ```js new Promise((resolve) => { console.log(1) return resolve() console.log(2) }).then(()...

React Native 0.60 之后 ios 默认使用 CocoaPods,由于墙的存在,导致安装依赖极慢,甚至超时崩溃: ``` info Installing required CocoaPods dependencies ``` 在网上找了下原因,主要是网络慢或网络连接的原因,解决方案如下: 1、 Ctrl + C 退出命令行 2、 安装 Cocoapods:`sudo gem install cocoapods` 3、 设置镜像: ``` $...

css强制换行、强制不换行及自动换行的写法 ### css强制不换行 ```css div{white-space:nowrap;} ``` ### css自动换行 ```css div{ word-wrap: break-word; word-break: normal; } ``` css强制英文单词断行 ```css div{word-break:break-all;} ```

```js { Keyboard.dismiss() }}> ``` 以上代码可以既能收键盘,又能让子组件获取点击事件

Android adds some default padding on top and bottom, you can reset them by adding `paddingVertical: 0` to your element' style.

react native

## UI Kit UI组件库 * [ ] [shoutem](https://shoutem.github.io/docs/ui-toolkit/introduction):组件丰富,设计风格酷炫、团队也比较牛逼(3000+) * [ ] react-native-training/react-native-elements[![GitHub stars](https://img.shields.io/github/stars/react-native-training/react-native-elements.svg?style=social&label=Stars)](https://github.com/react-native-training/react-native-elements):Cross Platform React Native UI Toolkit * [ ] ant-design/ant-design-mobile-rn [![GitHub stars](https://img.shields.io/github/stars/ant-design/ant-design-mobile-rn.svg?style=social&label=Stars)](https://github.com/ant-design/ant-design-mobile-rn):Ant Design 移动端设计规范。antd-mobile-rn 是 Ant Design 的移动规范的...

react native
全家桶

## 商城类 - EastWorld/wechat-app-mall [![GitHub stars](https://img.shields.io/github/stars/EastWorld/wechat-app-mall.svg?style=social&label=Stars)](https://github.com/EastWorld/wechat-app-mall):微信小程序商城,微信小程序微店 - dyq086/wxYuHanStore [![GitHub stars](https://img.shields.io/github/stars/dyq086/wxYuHanStore.svg?style=social&label=Stars)](https://github.com/dyq086/wxYuHanStore):基于wepy 商城(微店)微信小程序 欢迎学习交流 - lin-xin/wxapp-mall [![GitHub stars](https://img.shields.io/github/stars/lin-xin/wxapp-mall.svg?style=social&label=Stars)](https://github.com/lin-xin/wxapp-mall):微信小程序 商城demo - liuxuanqiang/wechat-weapp-mall [![GitHub stars](https://img.shields.io/github/stars/liuxuanqiang/wechat-weapp-mall.svg?style=social&label=Stars)](https://github.com/liuxuanqiang/wechat-weapp-mall):微信小程序-移动端商城 - skyvow/m-mall [![GitHub stars](https://img.shields.io/github/stars/skyvow/m-mall.svg?style=social&label=Stars)](https://github.com/skyvow/m-mall):🐶 微信小程序-小商城前台(基于 WeUI.wxss、ES6 前端技术开发...) - skyvow/m-mall-admin...

opening
weapp
全家桶

I had this same issue a few days ago but I figured out a way to fix it, hopefully it works for you as well: 1. right click on MySQL...

- [常用命令](#issuecomment-416051283)

ubuntu