-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
40 lines (39 loc) · 1.02 KB
/
App.js
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
import React, {Component} from 'react'
import {
Container, Header, Content, Button, Text, Form, Input, Item, Label,
Left, Right, Body, Title, Icon
} from 'native-base'
export default class App extends Component{
render(){
return (
<Container>
<Header androidStatusBarColor='#054E47'
style={{backgroundColor: '#006257'}} >
<Left>
<Title>WhatsApp</Title>
</Left>
<Right>
<Button transparent>
<Icon name='search' style={{fontSize: 20}} />
</Button>
<Button transparent>
<Icon name='md-more' />
</Button>
</Right>
</Header>
<Content>
<Form >
<Item floatingLabel>
<Label> Full Name </Label>
<Input autoFocus />
</Item>
<Item floatingLabel>
<Label> Password </Label>
<Input />
</Item>
</Form>
</Content>
</Container>
)
}
}