python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Vertical scrolling where attribute name row is fixed and horizontal scrolling where left most column is fixed in React Native
So far I've achieved this:
//code on data listing screen with a vertical flatlist
const DataListing = props => {
const memoizedValue = useMemo(() => renderItem, [props.coinData]);
const ...
Santanu Roy
Votes: 0
Answers: 0
Is there a way to somehow control the scroll position of scrollable components (e.g. ScrollView) declaratively?
i.e. by using a variable: state, Animated value, Reanimated value, whatever...
We can use imperative scrolling (like scrollToOffset etc.), but what about a declarative one? I mean how can we control t...
Dmytro Omelyan
Votes: 0
Answers: 0
Vertical scrolling inside the vertical scrolling in steps - React Native
I need to create the following interface:
There is a parent SectionList in which there are various sections of elements
One of these sections contains a vertical FlatList.
I want SectionList to scro...

Slam
Votes: 0
Answers: 3