Skip to content

Commit 98a9b2c

Browse files
committed
Update playgroud screen
1 parent 964ac03 commit 98a9b2c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

demo/src/screens/PlaygroundScreen.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
import _ from 'lodash';
22
import React, {Component} from 'react';
33
import {StyleSheet} from 'react-native';
4-
import {View, Text, Card,} 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 (
9-
<View center bg-dark80 flex>
9+
<View bg-dark80 flex padding-20>
10+
<View marginT-20>
11+
<TextField placeholder="Placeholder" />
12+
</View>
1013
<Card height={100} center padding-20>
1114
<Text text50>Playground Screen</Text>
1215
</Card>
16+
<View flex center>
17+
<Button marginV-20 label="Button"/>
18+
</View>
1319
</View>
1420
);
1521
}
1622
}
1723

1824
const styles = StyleSheet.create({
19-
container: {}
25+
container: {},
2026
});

0 commit comments

Comments
 (0)