..you can see in the screenshot above, i have a scrollview inside a flatlist. Normally this would not be an issue except i m not adding it. The Landing screen has no scrollview added. this pseudo view appears after i come back after going two levels deep inside the attached navigation. the following are my imports on the landingscreen. as you can see it has no scrollview. Incredibly baffling. any suggestions?
import { FlatList, LayoutAnimation, SafeAreaView, Text, TextInput, TouchableOpacity, View } from 'react-native';
import React, { useCallback, useEffect, useRef, useState } from 'react';
import { StackNavigationProp } from '@react-navigation/stack';
import { HomeNavigatorType } from '../../navigation/navigators/HomeNavigator';
import Search from '../../assets/vectors/Search.svg';
import { useDispatch, useSelector } from 'react-redux';
import { setNonProfits } from '../../reducers/NonProfit';
import { navigate } from '../../common/NavigationUtil';
import { styles } from './LandingScreen.styles';
import PressableSearchElement from '../../components/PressableSearchElement/PressableSearchElement';
import { SharedElement } from 'react-navigation-shared-element';
import { causes } from '../../common/Constants';
import { CardData, SearchItem } from '../../types/Landing';
import Back from '../../assets/vectors/Back.svg';
import { Avatar, LoaderScreen } from 'react-native-ui-lib';
import { Colors } from 'react-native-ui-lib/style';
import { getFirstName, isReferralFlow } from '../../store/selectors';
import { NonProfit } from '../../types/NonProfits';
import { LandingPageFlatCard } from '../../components/LandingPageFlatCard/LandingPageFlatCard';
import { Swirl } from '../../components/Swirl/Swirl';
import { windowWidth } from '../../common/DimensionUtils';
import { LandingPageGradientCard } from '../../components/LandingPageGradientCard/LandingPageGradientCard';
import { useQuery } from 'react-query';
import { charityNavigatorApi, nonProfitApi } from '../../api/NonProfit';
import ReferralModal from '../../components/ReferralModal/ReferralModal';
import { ReferralBanner } from '../../components/ReferralBanner/ReferralBanner';
import { mixpanel } from '../../common/DeviceUtils';
import { useDebounce } from '../../common/CodeUtils';
