Work Item and Activity screens mostly complete

This commit is contained in:
John Lyon-Smith
2018-04-03 17:25:59 -07:00
parent 410d2fde4f
commit 72af9a7035
25 changed files with 512 additions and 141 deletions

View File

@@ -0,0 +1,31 @@
import React from 'react'
import {
StyleSheet,
View,
Image,
TouchableOpacity
} from 'react-native'
import { Icon } from '.'
import autobind from 'autobind-decorator'
// const styles = StyleSheet.create()
export class PhotoButton extends React.Component {
render() {
return (
<TouchableOpacity>
<View style={{
flexDirection: 'row',
width: 100,
height: 60,
borderWidth: 2,
borderColor: 'gray',
borderRadius: 4,
justifyContent: 'center',
}}>
<Icon name='add' size={24} style={{ alignSelf: 'center' }} />
</View>
</TouchableOpacity>
)
}
}