TimoDevs
TimoDevs
try this ```js const [touchMove, setTouchMove] = useState(false); return ( {slides.map((item, index) => { return ( { setTouchMove(true); }} onTouchEnd={() => { if (touchMove) { setTouchMove(false); } else { try...
I have idea, how if you just use hooks isFocused from navigation, then if isFocused is true you render the list, if not then don't render
please correct me if this code is wrong, because actually i use this code, and i'm new to Flutter dart final namesProvider = StreamProvider( (ref) => ref.watch(tickerProvider).map( data: (count) =>...