diff options
| author | George Rusu <george@tagg.id> | 2021-05-24 15:24:27 -0700 | 
|---|---|---|
| committer | George Rusu <george@tagg.id> | 2021-05-24 15:24:27 -0700 | 
| commit | eebb463c49136395643d47b2b8597341cda4cbd8 (patch) | |
| tree | 015b0b74d23058bffc7be038f3263aa5d2955af1 /src/screens | |
| parent | 5afdf9208fd3d7498a2595797e6c9fb5f567fc61 (diff) | |
Fade tags in/out on image click
Diffstat (limited to 'src/screens')
| -rw-r--r-- | src/screens/profile/IndividualMoment.tsx | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/src/screens/profile/IndividualMoment.tsx b/src/screens/profile/IndividualMoment.tsx index 4baca5b2..515cbacf 100644 --- a/src/screens/profile/IndividualMoment.tsx +++ b/src/screens/profile/IndividualMoment.tsx @@ -1,17 +1,14 @@ -import AsyncStorage from '@react-native-community/async-storage';  import {BlurView} from '@react-native-community/blur';  import {RouteProp} from '@react-navigation/native';  import {StackNavigationProp} from '@react-navigation/stack';  import React from 'react'; -import {Alert, FlatList, StyleSheet, View} from 'react-native'; +import {FlatList, StyleSheet, View} from 'react-native';  import {useSelector} from 'react-redux';  import {    IndividualMomentTitleBar,    MomentPostContent,    MomentPostHeader,  } from '../../components'; -import {MOMENT_TAGS_ENDPOINT} from '../../constants'; -import {ERROR_SOMETHING_WENT_WRONG_REFRESH} from '../../constants/strings';  import {MainStackParams} from '../../routes';  import {RootState} from '../../store/rootreducer';  import {MomentType} from '../../types'; | 
