Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@

Synchronize scroll positions between multiple scrollable components — `ScrollView`, `FlatList`, and `SectionList` — with a super simple API, zero dependencies, and buttery 60fps performance.

---

## 🎮 Try the Expo Snack

🔗 [Open in Snack](https://snack.expo.dev/@martinezguillaume/react-native-scroll-sync)

📱 Scan this QR Code with the **Expo Go** app:

![QR Code](https://api.qrserver.com/v1/create-qr-code/?data=https://snack.expo.dev/@martinezguillaume/react-native-scroll-sync&size=200x200)


---

## ✨ Highlights
Expand Down
10 changes: 10 additions & 0 deletions example/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { ExpoRoot } from 'expo-router';
import Head from 'expo-router/head';

export default function ExpoRouterApp() {
return (
<Head.Provider>
<ExpoRoot context={require.context('./app', true)} location="/" />
</Head.Provider>
);
}