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)
react-native flatlist with dynamic rows and columns
I'm trying to build a simple layout using FlatList in react-native application like this:
example-image. I need to create a dynamic layout depending on the item's index, so if index ===0 1st image sho...
reactjs
Votes: 0
Answers: 1
FlatList inside useMemo, initalNumToRender issue
I have a FlatList inside useMemo as follows
const content = useMemo<JSX.Element>(
() =>
isLoading ? (
<Loader />
) : !alerts.length ?...
Hagai Harari
Votes: 0
Answers: 0
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
react native flatlist animation is not working as expected on RTL devices
I'm working in app that needs flatlist animation with RTL devices. I built a small app to understand how it will work. When using the app with LTR devices, it works just fine, and when I use I18nManag...

Hany Dh
Votes: 0
Answers: 0