├── .gitignore ├── Docs.md ├── README.md ├── base ├── BaseComponent.js └── images │ ├── titlebar_btn_back@2x.png │ ├── titlebar_btn_back@3x.png │ ├── titlebar_btn_back_press@2x.png │ └── titlebar_btn_back_press@3x.png ├── class_builder.sh ├── http ├── FetchUtil.js └── LtFetch.js ├── index.js ├── package.json ├── utils ├── InitUtil.js ├── StorageUtil.js ├── index.js └── private │ ├── Alert.js │ └── ComponentUtil.js └── widgets ├── Button.js ├── TabBar.js ├── TitleBar.js ├── ViewStack.js ├── loading ├── CircleProgress.js ├── images │ ├── loading_bg.png │ └── loading_bottom_bg.png └── index.js └── navbar ├── NavBar.js ├── NavBarButton.js └── styles.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/Docs.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/README.md -------------------------------------------------------------------------------- /base/BaseComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/base/BaseComponent.js -------------------------------------------------------------------------------- /base/images/titlebar_btn_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/base/images/titlebar_btn_back@2x.png -------------------------------------------------------------------------------- /base/images/titlebar_btn_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/base/images/titlebar_btn_back@3x.png -------------------------------------------------------------------------------- /base/images/titlebar_btn_back_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/base/images/titlebar_btn_back_press@2x.png -------------------------------------------------------------------------------- /base/images/titlebar_btn_back_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/base/images/titlebar_btn_back_press@3x.png -------------------------------------------------------------------------------- /class_builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/class_builder.sh -------------------------------------------------------------------------------- /http/FetchUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/http/FetchUtil.js -------------------------------------------------------------------------------- /http/LtFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/http/LtFetch.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/package.json -------------------------------------------------------------------------------- /utils/InitUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/utils/InitUtil.js -------------------------------------------------------------------------------- /utils/StorageUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/utils/StorageUtil.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/utils/index.js -------------------------------------------------------------------------------- /utils/private/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/utils/private/Alert.js -------------------------------------------------------------------------------- /utils/private/ComponentUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/utils/private/ComponentUtil.js -------------------------------------------------------------------------------- /widgets/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/Button.js -------------------------------------------------------------------------------- /widgets/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/TabBar.js -------------------------------------------------------------------------------- /widgets/TitleBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/TitleBar.js -------------------------------------------------------------------------------- /widgets/ViewStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/ViewStack.js -------------------------------------------------------------------------------- /widgets/loading/CircleProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/loading/CircleProgress.js -------------------------------------------------------------------------------- /widgets/loading/images/loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/loading/images/loading_bg.png -------------------------------------------------------------------------------- /widgets/loading/images/loading_bottom_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/loading/images/loading_bottom_bg.png -------------------------------------------------------------------------------- /widgets/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/loading/index.js -------------------------------------------------------------------------------- /widgets/navbar/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/navbar/NavBar.js -------------------------------------------------------------------------------- /widgets/navbar/NavBarButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/navbar/NavBarButton.js -------------------------------------------------------------------------------- /widgets/navbar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/easier-react-native/HEAD/widgets/navbar/styles.js --------------------------------------------------------------------------------