You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/articles/getting-started/where-to-start.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,15 @@ UI Kitten is a framework of UI components powered by Eva Design System for your
5
5
6
6
## Quick start tutorials
7
7
8
-
**[Install UI Kitten](guides/install-ui-kitten)**
8
+
-**[Start a new App](guides/start-a-new-app)**
9
9
10
-
This tutorial explains how to setup React Native app with UI Kitten.
10
+
This tutorial explains how to setup React Native app with UI Kitten from a scratch.
11
+
12
+
-**[Install into existing App](guides/install-into-existing-app)**
11
13
12
14
Please consider creating an issue on GitHub if your use case is not described above. But we kindly ask to always look through the documentation and the list of existing issues first.
If you already have an existing code base, you're able to give UI Kitten a try as simple as `npm install`. Please refer to [Start a new App Guide](guides/start-a-new-app) if you don't have any code yet.
4
+
5
+
<hr>
6
+
7
+
## Install UI Kitten and Eva Design System
8
+
9
+
```bash
10
+
npm i react-native-ui-kitten @eva-design/eva
11
+
```
12
+
13
+
<hr>
14
+
15
+
## Configure Application Root
16
+
17
+
At this step you have everything in place, let's configure UI Kitten to be used in your app.
If you don't have any code yet, please consider checking <ahref="https://facebook.github.io/react-native/docs/getting-started"target="_blank">React Native Getting Started</a> documentation for help creating your app.
4
+
5
+
<hr>
6
+
7
+
## Installation
8
+
9
+
First of all, you should have React Native CLI installed.
10
+
11
+
```bash
12
+
npm i -g react-native-cli
13
+
```
14
+
15
+
<hr>
16
+
17
+
## Create a New Project
18
+
19
+
A new project can be created using React Native CLI tools ant UI Kitten template.
20
+
21
+
```bash
22
+
react-native init AwesomeApp --template ui-kitten
23
+
```
24
+
25
+
Or, if you want to init with TypeScript:
26
+
```bash
27
+
react-native init --template ui-kitten-typescript
28
+
```
29
+
30
+
That's it. UI Kitten is ready now. For the next steps, simply follow command line instructions.
0 commit comments