diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-23 17:51:18 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-23 17:51:18 -0400 |
commit | 1b7e780b756b3a64db5f20d03678fc7aadc3d1d6 (patch) | |
tree | b9ee25ff69505a01fc9526b49817a55f22ee7672 | |
parent | fc6e1452bb615e6d2cdf9a3cf812931aa34054e7 (diff) |
toggled off gif
-rw-r--r-- | src/components/messages/ChatInput.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/messages/ChatInput.tsx b/src/components/messages/ChatInput.tsx index bde5fc12..142c935e 100644 --- a/src/components/messages/ChatInput.tsx +++ b/src/components/messages/ChatInput.tsx @@ -84,12 +84,12 @@ const ChatInput: React.FC< source={require('../../assets/images/camera.png')} /> </TouchableOpacity> */} - <TouchableOpacity onPress={() => setText('/')}> + {/* <TouchableOpacity onPress={() => setText('/')}> <Image style={{width: normalize(23), height: normalize(23)}} source={require('../../assets/images/gif.png')} /> - </TouchableOpacity> + </TouchableOpacity> */} <ChatInputSubmit onPress={sendMessage} outlined={text.length === 0} /> </View> </View> @@ -135,7 +135,8 @@ const styles = StyleSheet.create({ justifyContent: 'space-evenly', alignItems: 'center', marginRight: 10, - width: 100, + width: 50, + // width: 100, alignSelf: 'flex-end', }, }); |