Aaron Young

Results 217 comments of Aaron Young

## 搜索框 - umhan35/react-native-search-bar [![GitHub stars](https://img.shields.io/github/stars/umhan35/react-native-search-bar.svg?style=social&label=Stars)](https://github.com/umhan35/react-native-search-bar):The high-quality iOS native search bar for react native.

## Message Bar - KBLNY/react-native-message-bar [![GitHub stars](https://img.shields.io/github/stars/KBLNY/react-native-message-bar.svg?style=social&label=Stars)](https://github.com/KBLNY/react-native-message-bar):A notification bar alert displayed at the top of the screen for react-native(有BUG,没人维护了) - testshallpass/react-native-dropdownalert [![GitHub stars](https://img.shields.io/github/stars/testshallpass/react-native-dropdownalert.svg?style=social&label=Stars)](https://github.com/testshallpass/react-native-dropdownalert):A simple alert to notify users about new...

## 星级评定 - djchie/react-native-star-rating [![GitHub stars](https://img.shields.io/github/stars/djchie/react-native-star-rating.svg?style=social&label=Stars)](https://github.com/djchie/react-native-star-rating):A React Native component for generating and displaying interactive star ratings

## 侧滑组件 - dancormier/react-native-swipeout [![GitHub stars](https://img.shields.io/github/stars/dancormier/react-native-swipeout.svg?style=social&label=Stars)](https://github.com/dancormier/react-native-swipeout):iOS-style swipeout buttons behind component

## 文字跑马灯 - cheng-kang/react-native-lahk-marquee-label-vertical [![GitHub stars](https://img.shields.io/github/stars/cheng-kang/react-native-lahk-marquee-label-vertical.svg?style=social&label=Stars)](https://github.com/cheng-kang/react-native-lahk-marquee-label-vertical):A react-native marquee(vertical) label component. - cheng-kang/react-native-lahk-marquee-label [![GitHub stars](https://img.shields.io/github/stars/cheng-kang/react-native-lahk-marquee-label.svg?style=social&label=Stars)](https://github.com/cheng-kang/react-native-lahk-marquee-label):A react-native marquee(horizon) label component.

## 瀑布流 - junhaotong/react-native-waterfall [![GitHub stars](https://img.shields.io/github/stars/junhaotong/react-native-waterfall.svg?style=social&label=Stars)](https://github.com/junhaotong/react-native-waterfall):React Native 瀑布流组件

## 栅格 grid - https://github.com/phil-r/react-native-grid-component - https://github.com/GeekyAnts/react-native-easy-grid - https://github.com/saleel/react-native-super-grid - https://www.jianshu.com/p/f74688e54483

## 常用命令 ### 卸载软件 普通的 `remove` 命令不能彻底清除软件,清楚配置信息需要执行下面的命令: - apt-get remove --purge softname - apt-get autoremove - apt-get clean - dpkg -l |grep ^rc|awk '{print $2}' - xargs dpkg -P -...

- [CodePush热更新切换本地与微软服务](https://blog.csdn.net/jing85432373/article/details/84292225?tdsourcetag=s_pctim_aiomsg)

# Atom 中使用ESLint ## 安装必需插件 ### 1、安装 atom-ide-ui 相对于 linter,它是 facebook 开发,制作更精良,其次他并不仅仅提供了这一个功能。 ### 2、安装 linter-eslint 安装完成之后,linter-eslint的缺省设置有2个地方需要修改: 1、把 `Disable when no ESLint config is found` 的对钩去掉。这个选项的意思是说:如果你的javascript项目文件夹中没有.eslintrc这样的配置文件的话,那么ESLint就不起作用。在这里,我们要设置为全局lint,不需要在每个javascript文件夹中包含 `.eslintrc.*` 文件,所以要把它去掉,否则由于我们的项目文件夹中没有 `.eslintrc.*` 文件,ESLint会不起作用。 2、把...