Can’t get scrollview to actually scroll on android
I am following a yt tutorial and i just simply can’t get this to work. I don’t think i have tried making something work so much, honestly you’d expect something like react native to have working components right out of the box, not only does it not work, it’s also not trivial at all to get this working, i saw multiple posts about this from years and some just recently and i believe it’s still an open issue on github, please tell me if this is just absolutely unfixable so i can maybe use an external library. (this problem is particularly on android after using the expo go app to scan the qr code i don’t know if it works on iOS or not):
Why is my scrollview not scrolling with masked view
import MaskedView from ‘@react-native-community/masked-view’; import React, { useRef, useState } from ‘react’; import { View, Animated, Button, Image, Text } from ‘react-native’; import { ScrollView } from ‘react-native-gesture-handler’; const App = () => { // Define animated values for flex and borderRadius const flexValue = useRef(new Animated.Value(0.8)).current; const borderRadiusValue = useRef(new Animated.Value(100)).current; const marginTopValue = […]