-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
42 lines (30 loc) · 921 Bytes
/
Copy pathApp.js
File metadata and controls
42 lines (30 loc) · 921 Bytes
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
import React from 'react';
import { StyleSheet, Text, View, Button, ScrollView } from 'react-native';
import { Header } from 'react-native-elements';
import { StackNavigator } from 'react-navigation';
import { SearchBar } from 'react-native-elements'
import { Divider } from 'react-native-elements'
import Shop from './comp/Shop'
import Items from './comp/Items'
import Basket from './comp/Basket'
export default class App extends React.Component {
render() {
return (
<ScrollView>
<View>
<Header
backgroundColor={'#f4a136'}
leftComponent={{ icon: 'menu', color: '#fff' }}
centerComponent={{ text: 'Boutique Assembl', style: { color: '#fff' } }}
rightComponent={{ icon: 'shopping-cart', color: '#fff' }}
/>
<SearchBar
lightTheme
round
placeholder='Search a product...' />
<Items />
</View>
</ScrollView>
);
}
}