Documents
Examples / basic-layouts / Stack
Examples / basic-layouts / Stack
Type
Document
Status
Published
Created
Apr 22, 2026
Updated
Apr 22, 2026

{/*

=========================================================================#

This page generated by /scripts/gen-pages.mjs, Don't update it manually#

=========================================================================

*/}

import { Tabs } from 'nextra/components'
import { Callout } from 'nextra/components'
import Demo from '@/components/Demo'

Check out the `stack` animation demo for the full source code [here](https://github.com/dohooo/react-native-reanimated-carousel/blob/main/example/app/app/demos/basic-layouts/stack/index.tsx)
import { renderItem } from "@/utils/render-item";
import * as React from "react";
import { View } from "react-native";
import type { ICarouselInstance } from "react-native-reanimated-carousel";
import Carousel from "react-native-reanimated-carousel";

const defaultDataWith6Colors = [
	"#B0604D",
	"#899F9C",
	"#B3C680",
	"#5C6265",
	"#F5D399",
	"#F1F1F1",
];

function Index() {
	const ref = React.useRef<ICarouselInstance>(null);

	return (
		<View
			id="carousel-component"
			dataSet={{ kind: "basic-layouts", name: "stack" }}
			<Carousel
				ref={ref}
				autoPlayInterval={2000}
				data={defaultDataWith6Colors}
				loop={true}
				pagingEnabled={true}
				snapEnabled={true}
				style={{
					width: 430 * 0.75,
					height: 220,
					alignItems: "center",
					justifyContent: "center",
				}}
				mode={"horizontal-stack"}
				modeConfig={{
					snapDirection: "left",
					stackInterval: 18,
				}}
				customConfig={() => ({ type: "positive", viewCount: 5 })}
				renderItem={renderItem({ rounded: true })}
			/>
		</View>
	);
}

export default Index;

Examples / basic-layouts / Stack | Dosu