-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
35 lines (32 loc) · 929 Bytes
/
App.tsx
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
*/
import React, {useState} from 'react';
import {SafeAreaView, TextInput} from 'react-native';
import {VimeoPlayer} from './src/VimeoPlayer';
import tw from 'twrnc';
function App(): JSX.Element {
const [id, setId] = useState('347119375');
const [width, setWidth] = useState(400);
const [height, setHeight] = useState(300);
return (
<SafeAreaView>
<TextInput style={tw`border`} value={id} onChangeText={setId} />
<TextInput
style={tw`border`}
value={width.toString()}
onChangeText={value => setWidth(parseInt(value, 10))}
/>
<TextInput
style={tw`border`}
value={height.toString()}
onChangeText={value => setHeight(parseInt(value, 10))}
/>
<VimeoPlayer id={id} width={width} height={height} />
</SafeAreaView>
);
}
export default App;