import * as React from 'react'; import { StyleSheet, View, Text, useWindowDimensions } from 'react-native'; import { Target, ScrollView, Anchor } from '@nandorojo/anchor'; export default function App() { const { height } = useWindowDimensions(); return ( Scroll to 1 Scroll to 2 Here is 1 Here is 2 Scroll to top ); } const styles = StyleSheet.create({ container: { flex: 1, }, box: { width: 150, height: 300, backgroundColor: 'blue', }, });