This repository has been archived by the owner on Feb 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
presentasjon.html
256 lines (203 loc) · 4.03 KB
/
presentasjon.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="http://bekk.github.io/react-native-workshop/slides/remark-bekk/dist/bekk.css">
<title>Title</title>
<meta charset="utf-8">
<style>
.small-img img {
width: 250px;
}
.medium-img img {
width: 600px;
}
.large-img img {
width: 700px;
}
.full-img img {
width: 100%;
}
</style>
</head>
<body>
<textarea id="source">
class: front-page
# React Native
## Workshop
---
class: agenda
# Agenda
* Intro
* Syntax og styling
---
# React Native
* Samme design som React
* Mye likt:
* JSX
* Komponenter
* state
* props
* Native-komponenter istedenfor web-komponenter
* ...og en del andre ting
---
# Hvordan fungerer det
Samme grafiske byggesteiner som iOS og Android
...satt sammen med React og JavaScript
.center[![Button component](https://raw.githubusercontent.com/bekk/react-native-workshop-v2/master/images/native_component.jpg)]
---
class: cols two
# Native feel
Vises forskjellig på iOS og Android
.col[
.small-img[![](https://github.com/bekk/react-native-workshop-v2/raw/master/images/android.png)]
]
.col[
.small-img[![](https://github.com/bekk/react-native-workshop-v2/raw/master/images/ios.png)]
]
---
# Hello world!
```html-javascript
// App.js
import React from 'react'
import { Text } from 'react-native'
function HelloWorldApp() {
return (
<Text>Hello world!</Text>
)
}
export default HelloWorldApp
```
---
# Komponenter
Komponenter lar deg splitte brukergrensesnittet i uavhengige, gjenbrukbare biter.
Alt du ser på skjermen er en eller annen komponent. Enten en
* komponent du har laget selv
* innebygd komponent
Må inneholde en `render`-metode (klassekomponent) eller return (funksjonell komponent).
---
# innebygde komponenter
Flere innebygde komponenter
* `<View/>`
* tilsvarer `<div/>`
* `<Text/>`
* tilsvarer `<p/>`
* `<Image/>`
* tilsvarer `<img/>`
Utfyllende oversikt: https://facebook.github.io/react-native/docs/components-and-apis.html
---
# Tilpasse komponenter
Det er to typer data som påvirker en komponent i React Native: `props` og `state`
`props`
* Satt av foreldrekomponenten
`state`
* Satt av seg selv
---
# props
```html-javascript
function Greeting(props) {
return (
<Text>Hello {props.name}!</Text>
)
}
function LotsOfGreetings() {
return (
<View>
<Greeting name="Svein" />
<Greeting name="Mats" />
</View>
)
}
export default LotsOfGreetings
```
---
# state
```html-javascript
import React, { useState } from 'react'
function DisplayTextInput() {
const [text, setText] = useState('')
return {
<View>
<TextInput
placeholder="Skriv her..."
value={ text }
onChangeText={ (text) => setText(text) }
/>
<Text>{ text }</Text>
</View>
}
}
export default DisplayTextInput
```
---
# Ingen CSS, kun JavaScript
```css
.element {
background-color: red;
width: 20px;
border: 1px solid black;
}
```
...blir til
```javascript-html
{
element: {
backgroundColor: 'red',
width: 20,
borderColor: 'black',
borderWidth: 1
}
}
```
---
# Vent... ingen CSS?
Inspirert av CSS
...men med noen unntak
* camel case
```html
background-color -> backgroundColor
```
* ingen units
```html
margin: 20px -> margin: 20
```
* stringer
```html
text-align: center -> textAlign: 'center'
```
---
# StyleSheet.create
## Man setter styling via en style-prop
```javascript-html
<Text style={{ color: 'red' }}>Jeg er rød</Text>
```
## Kan bli uoversiktlig i store komponenter
```javascript-html
import { StyleSheet } from 'react-native'
...
<Text style={ styles.red }>Jeg er rød</Text>
...
const styles = StyleSheet.create({
red: {
color: 'red',
}
})
```
---
class: middle left
## Oppgaver
```bash
https://github.com/bekk/react-native-ws
```
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
ratio: "16:9",
highlightLanguage: "javascript",
highlightStyle: "solarized-dark"
});
</script>
</body>
</html>