aboutsummaryrefslogtreecommitdiff
path: root/src/components/moments
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-08 16:23:49 -0400
committerIvan Chen <ivan@tagg.id>2021-07-09 15:56:47 -0400
commit2c2921af0fc075482aa1a7d2064d24c4999497ca (patch)
tree67b0744ceacb28fccfdbdb38771860ee8ad9ab6f /src/components/moments
parentff783d8aebc90802079f843b27f2719173bd6b70 (diff)
Remove moment post button, Update to use square button
Diffstat (limited to 'src/components/moments')
-rw-r--r--src/components/moments/MomentPostButton.tsx49
-rw-r--r--src/components/moments/index.ts1
2 files changed, 0 insertions, 50 deletions
diff --git a/src/components/moments/MomentPostButton.tsx b/src/components/moments/MomentPostButton.tsx
deleted file mode 100644
index 78fe209b..00000000
--- a/src/components/moments/MomentPostButton.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import React from 'react';
-import {StyleSheet} from 'react-native';
-import {Text} from 'react-native-animatable';
-import {TouchableOpacity} from 'react-native-gesture-handler';
-import {TAGG_LIGHT_BLUE} from '../../constants';
-import {normalize, SCREEN_WIDTH} from '../../utils';
-
-interface MomentPostButtonProps {
- enabled: boolean;
- onPress: () => void;
-}
-
-const MomentPostButton: React.FC<MomentPostButtonProps> = ({
- enabled,
- onPress,
-}) => {
- return (
- <TouchableOpacity
- style={[styles.button, enabled ? {} : styles.grey]}
- onPress={onPress}
- disabled={!enabled}>
- <Text style={styles.text}>Post</Text>
- </TouchableOpacity>
- );
-};
-
-const styles = StyleSheet.create({
- button: {
- width: SCREEN_WIDTH * 0.8,
- height: normalize(37),
- backgroundColor: TAGG_LIGHT_BLUE,
- justifyContent: 'center',
- alignItems: 'center',
- borderRadius: 6,
- alignSelf: 'center',
- },
- grey: {
- backgroundColor: '#C4C4C4',
- },
- text: {
- color: 'white',
- fontWeight: 'bold',
- fontSize: normalize(15),
- lineHeight: 18,
- letterSpacing: 2,
- },
-});
-
-export default MomentPostButton;
diff --git a/src/components/moments/index.ts b/src/components/moments/index.ts
index d2f5d150..cac2da2e 100644
--- a/src/components/moments/index.ts
+++ b/src/components/moments/index.ts
@@ -3,4 +3,3 @@ export {default as CaptionScreenHeader} from './CaptionScreenHeader';
export {default as Moment} from './Moment';
export {default as TagFriendsFooter} from './TagFriendsFoooter';
export {default as MomentPost} from './MomentPost';
-export {default as MomentPostButton} from './MomentPostButton';