diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-29 16:29:06 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-06-29 16:29:06 -0400 |
commit | 5fcffd40746b2074d523f53dc82c824d147444e5 (patch) | |
tree | 5bbb93a56454778996a543a567cc0d8d9d60d11e /src/components/camera/SaveButton.tsx | |
parent | f273a7aa1c2e27692c2a03ae1e2fc9b81360558d (diff) |
Refactor buttons
Diffstat (limited to 'src/components/camera/SaveButton.tsx')
-rw-r--r-- | src/components/camera/SaveButton.tsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/camera/SaveButton.tsx b/src/components/camera/SaveButton.tsx new file mode 100644 index 00000000..840cc804 --- /dev/null +++ b/src/components/camera/SaveButton.tsx @@ -0,0 +1,26 @@ +import React from 'react'; +import {Text, TouchableOpacity} from 'react-native'; +import SaveIcon from '../../assets/icons/camera/save.svg'; +import {downloadImage} from '../../utils/camera'; +import {styles} from './styles'; + +interface SaveButtonProps { + capturedImageURI: string; +} + +/* + * Appears when a picture has been taken, + * On click, saves the captured image to "Recents" album on device gallery + */ +export const SaveButton: React.FC<SaveButtonProps> = ({capturedImageURI}) => ( + <TouchableOpacity + onPress={() => { + downloadImage(capturedImageURI); + }} + style={styles.saveButton}> + <SaveIcon width={40} height={40} /> + <Text style={styles.saveButtonLabel}>Save</Text> + </TouchableOpacity> +); + +export default SaveButton; |