Skip to content

Commit 62b65f6

Browse files
committed
🎨 added required files for package
1 parent 9cb1dad commit 62b65f6

File tree

9 files changed

+2006
-10153
lines changed

9 files changed

+2006
-10153
lines changed

TestApp/App.tsx

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
import React from 'react';
2-
import {SafeAreaView, Text} from 'react-native';
2+
import {SafeAreaView, StyleSheet, Text, View} from 'react-native';
3+
import {ButtonOutline} from 'react-native-ui-buttons';
34

4-
const App = () => {
5+
const App = (): JSX.Element => {
56
return (
67
<SafeAreaView>
7-
<Text>example</Text>
8+
<View style={styles.container}>
9+
<Text style={styles.heading}>Button Outline</Text>
10+
<ButtonOutline title={'Test Button'} />
11+
</View>
812
</SafeAreaView>
913
);
1014
};
1115

16+
const styles = StyleSheet.create({
17+
heading: {
18+
textAlign: 'center',
19+
marginBottom: 10,
20+
fontSize: 30,
21+
},
22+
container: {
23+
padding: 20,
24+
},
25+
});
26+
1227
export default App;

TestApp/package-lock.json

Lines changed: 302 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)