-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.ios.js
83 lines (74 loc) · 2.01 KB
/
index.ios.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
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
76
77
78
79
80
81
82
83
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
'use strict';
import React, {Component} from 'react';
import {
AppRegistry,
StyleSheet,
Navigator,
Text,
TouchableHighlight,
View
} from 'react-native';
import VideoScreen from './VideoTrimView.js'
const styles = StyleSheet.create({
container: {
flex: 1
}
});
const routes = [
{title: 'Pick and Trim Video', index: 0},
{title: 'Timmed Video', index: 1},
];
class VideoTrimApp extends Component {
render() {
return (
<Navigator
initialRoute={routes[0]}
initialRouteStack={routes}
renderScene={(route, navigator) =>
<VideoScreen
/>
}
navigationBar={
<Navigator.NavigationBar
routeMapper={{
LeftButton: (route, navigator, index, navState) =>
{
if (route.index === 0) {
return null;
} else {
return (
<TouchableHighlight onPress={() => navigator.pop()}>
<Text>Back</Text>
</TouchableHighlight>
);
}
},
RightButton: (route, navigator, index, navState) =>
{
if (route.index === 0) {
return null;
} else {
return (
<TouchableHighlight onPress={() => navigator.pop()}>
<Text>Back</Text>
</TouchableHighlight>
);
}
},
Title: (route, navigator, index, navState) =>
{ return (<Text>{routes[index].title}</Text>); },
}}
style={{backgroundColor: '#48BBEC'}}
/>
}
style={styles.container}
/>
);
}
}
AppRegistry.registerComponent('VideoTrimApp', () => VideoTrimApp);