-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchBarPage.js
More file actions
75 lines (69 loc) · 1.87 KB
/
SearchBarPage.js
File metadata and controls
75 lines (69 loc) · 1.87 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React, { Component } from 'react';
import { Constants } from 'expo';
import {
Container,
Header,
Button,
Text,
Body,
Form,
Item as FormItem,
Input,
Label,
Title,
Content,
ListItem,
CheckBox,
View,
Item,
} from 'native-base';
import { Left, Right, Icon } from 'native-base';
import { Actions } from 'react-native-router-flux';
export default class SearchBarPage extends Component {
constructor(props) {
super(props);
this.state = {
chkbox_chk: false,
};
}
check() {
var checked = this.state.chkbox_chk;
if (checked == true) {
this.setState({ chkbox_chk: false });
} else this.setState({ chkbox_chk: true });
}
render() {
return (
<Container>
<Content>
<Body>
<Text> </Text>
<Text> Search any other symptoms that you are feeling </Text>
<Text> Select the symptoms from the wordbank </Text>
<Text> Click down when finished </Text>
<Text> </Text>
flexDirection='row', justifyContent='center'
</Body>
<Header searchBar rounded>
<Item>
<Icon name="ios-search" />
<Input placeholder="Search Symptoms, etc." />
<Icon name="ios-search"/>
</Item>
<Button transparent>
<Text>Add to My List</Text>
</Button>
</Header>
<Button large block transparent> </Button>
<Button large block transparent> </Button>
<Button large block transparent> </Button>
<Button large block transparent> </Button>
<Button large> </Button> <Button > </Button>
<Button large block transparent >
<Text large onPress={Actions.resources}> Done </Text>
</Button>
</Content>
</Container>
);
}
}