Skip to content

Commit 05057ee

Browse files
committed
Reset PlaygroundScreen changes
1 parent 47998eb commit 05057ee

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

demo/src/screens/PlaygroundScreen.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
import _ from 'lodash';
22
import React, {Component} from 'react';
33
import {StyleSheet} from 'react-native';
4-
import {View, Incubator, Text, Card, TextField, Button} from 'react-native-ui-lib'; //eslint-disable-line
4+
import {View, Text, Card, TextField, Button} from 'react-native-ui-lib'; //eslint-disable-line
55

66
export default class PlaygroundScreen extends Component {
77
render() {
88
return (
99
<View bg-dark80 flex padding-20>
10-
<Incubator.WheelPicker/>
10+
<View marginT-20>
11+
<TextField placeholder="Placeholder" />
12+
</View>
13+
<Card height={100} center padding-20>
14+
<Text text50>Playground Screen</Text>
15+
</Card>
16+
<View flex center>
17+
<Button marginV-20 label="Button"/>
18+
</View>
1119
</View>
1220
);
1321
}

0 commit comments

Comments
 (0)