Skip to content

Instantly share code, notes, and snippets.

View mtzfactory's full-sized avatar

Ricardo Martínez mtzfactory

  • Barcelona
  • 22:19 (UTC +02:00)
View GitHub Profile
@DeluxeOwl
DeluxeOwl / grid.tsx
Created January 27, 2024 08:58
react native fancy grid, by @rohiddev
import React, { ReactNode, useMemo, useState } from "react";
import { View, useWindowDimensions } from "react-native";
export default function FancyGrid<T>({
data,
renderItem,
keyExtractor,
spacing = 8,
minWidth = 110,
maxWidth = 180,