Skip to content

Commit 5de0809

Browse files
committed
added options
1 parent 6579929 commit 5de0809

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/gists/gistoptions.screen.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import React from 'react';
2+
import { View, Text, TouchableOpacity } from 'react-native';
3+
import { colors } from './../config';
4+
5+
const GistOptions = () => (
6+
<View style={{
7+
flex: 1, backgroundColor: colors.white, borderWidth: 5, borderColor: 'red',
8+
}}>
9+
<TouchableOpacity style={{ padding: '2%' }}>
10+
<Text>Delete</Text>
11+
</TouchableOpacity>
12+
<TouchableOpacity style={{ padding: '2%' }}>
13+
<Text>Cancel</Text>
14+
</TouchableOpacity>
15+
</View>
16+
17+
);
18+
19+
export default GistOptions;

0 commit comments

Comments
 (0)