Skip to content

Commit ab05d3e

Browse files
committed
Fix Lint, Update readme
1 parent d2528d7 commit ab05d3e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# React Native Typescript Boilerplate
22

3-
![Travis](https://api.travis-ci.com/AmitM30/react-native-typescript-boilerplate.svg?branch=master) ![License](https://img.shields.io/github/license/AmitM30/react-native-typescript-boilerplate.svg) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md) [![Code Climate](https://codeclimate.com/github/AmitM30/react-native-typescript-boilerplate/badges/gpa.svg)](https://codeclimate.com/github/AmitM30/react-native-typescript-boilerplate)
3+
![Travis](https://api.travis-ci.com/AmitM30/react-native-typescript-boilerplate.svg?branch=master) [![Code Climate](https://codeclimate.com/github/AmitM30/react-native-typescript-boilerplate/badges/gpa.svg)](https://codeclimate.com/github/AmitM30/react-native-typescript-boilerplate) ![License](https://img.shields.io/github/license/AmitM30/react-native-typescript-boilerplate.svg) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md)
44

55
### An opinionated [React Native](https://facebook.github.io/react-native/docs/getting-started) Starter Kit with [React Native Navigation](https://github.com/wix/react-native-navigation) + [Redux](https://github.com/reactjs/redux) + [Airbnb TSLint](https://github.com/airbnb/javascript) to build iOS and Android apps using [TypeScript](https://github.com/Microsoft/TypeScript-React-Native-Starter)
66

@@ -26,10 +26,13 @@ You might also want to [rename](https://medium.com/the-react-native-log/how-to-r
2626

2727
> _Disclaimer_: This is an **opinionated** approach to building apps with RN. The project structure is inspired by multiple production apps built by the contributors.
2828
29+
#### App Screens
30+
2931
| ![Splash](./src/view/assets/images/sample/1.png "Splash") | ![Home](./src/view/assets/images/sample/2.png "Home") |![Side Menu](./src/view/assets/images/sample/3.png "Side Menu") |
3032
| :-------------------------------------------------------: | :---------------------------------------------------: | :---------------------------------------------------: |
3133

32-
Flipper Support
34+
#### Flipper Support
35+
3336
![Flipper](./src/view/assets/images/sample/4.png "Flipper")
3437

3538
### Table of Contents

src/view/screens/home/Component.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import * as React from 'react';
2-
import { SafeAreaView, TouchableOpacity, View, Image } from 'react-native';
2+
import { Navigation } from 'react-native-navigation';
3+
import { SafeAreaView, TouchableOpacity, Image } from 'react-native';
34

45
import styles from './styles';
56
import { CText } from '../../elements/custom';
6-
// import { BUTTON_DEFAULT } from '../../elements/buttons';
7-
import { Navigation } from 'react-native-navigation';
8-
97

108
export interface Props {
119
name: string;

0 commit comments

Comments
 (0)