-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomePage.js
43 lines (36 loc) · 1.16 KB
/
HomePage.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
41
42
43
import React, { Component } from 'react';
import { View, ActivityIndicator } from 'react-native';
import { Actions } from 'react-native-router-flux';
import Button from 'apsl-react-native-button';
import baseStyle from './style';
export default class HomePage extends Component {
constructor(props) {
super(props);
this.gotoBarcodePage = this.gotoBarcodePage.bind(this);
this.gotoInputCodePage = this.gotoInputCodePage.bind(this);
}
gotoBarcodePage() {
Actions.barcodePage({ role: this.props.role });
}
gotoInputCodePage() {
Actions.inputCodePage({ role: this.props.role });
}
render() {
return (
<View style={baseStyle.containerCentering}>
<Button
style={baseStyle.buttonBarcodeStyle}
textStyle={baseStyle.buttonBarcodeTextStyle}
onPress={() => this.gotoBarcodePage()} >
ស្គែនលេខកូដ
</Button>
<Button
style={baseStyle.buttonInputCodeStyle}
textStyle={baseStyle.buttonInputCodeTextStyle}
onPress={() => this.gotoInputCodePage()} >
បញ្ចូលលេខកូដ
</Button>
</View>
);
}
}