diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-07-09 17:43:43 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-07-09 17:43:43 -0700 |
commit | c179f04f13dfcde88e22097680d951c449ffcb38 (patch) | |
tree | 5167be318418bdbcd6bede91e0e303f26e5ec0e4 /src | |
parent | 1b2dbdefd7f0f188c3aae9f3fb862a690c123468 (diff) |
Add tap to view to dismiss keyboard, Add flatlist param
Diffstat (limited to 'src')
-rw-r--r-- | src/components/moments/MomentPost.tsx | 2 | ||||
-rw-r--r-- | src/screens/profile/IndividualMoment.tsx | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/components/moments/MomentPost.tsx b/src/components/moments/MomentPost.tsx index 319542f9..07295369 100644 --- a/src/components/moments/MomentPost.tsx +++ b/src/components/moments/MomentPost.tsx @@ -2,6 +2,7 @@ import {useNavigation} from '@react-navigation/native'; import React, {useContext, useEffect, useMemo, useRef, useState} from 'react'; import { Image, + Keyboard, KeyboardAvoidingView, Platform, StatusBar, @@ -252,6 +253,7 @@ const MomentPost: React.FC<MomentPostProps> = ({ onPress={() => { setVisible(!visible); setFadeValue(new Animated.Value(0)); + Keyboard.dismiss(); }}> <View style={styles.contentContainer}> <View style={styles.topContainer}> diff --git a/src/screens/profile/IndividualMoment.tsx b/src/screens/profile/IndividualMoment.tsx index c65d41e7..1b0c7c2b 100644 --- a/src/screens/profile/IndividualMoment.tsx +++ b/src/screens/profile/IndividualMoment.tsx @@ -92,6 +92,7 @@ const IndividualMoment: React.FC<IndividualMomentProps> = ({route}) => { screenType={screenType} /> )} + keyboardShouldPersistTaps={'handled'} scrollEnabled={!keyboardVisible} keyExtractor={(item, _) => item.moment_id} showsVerticalScrollIndicator={false} |