diff --git a/example/app/scrollview-charts.tsx b/example/app/scrollview-charts.tsx index f4157d39..84655e50 100644 --- a/example/app/scrollview-charts.tsx +++ b/example/app/scrollview-charts.tsx @@ -13,7 +13,7 @@ const DATA = Array.from({ length: 31 }, (_, i) => ({ highTmp: 40 + 30 * Math.random(), })); -const BarChart = () => { +const LineChart = () => { const font = useFont(inter, 12); const { state, isActive } = useChartPressState({ x: 0, y: { highTmp: 0 } }); return ( @@ -45,7 +45,7 @@ export default function GettingStartedScreen() { {Array.from({ length: 5 }, (_, i) => ( - + Just a page with a number of charts nested within a ScrollView