Skip to content

Instantly share code, notes, and snippets.

@shakram02
shakram02 / react-native-scrollview-with-confirm-button.tsx
Created May 4, 2023 08:59
Scroll view with header and confirm button
import { ScrollView, Text, TouchableOpacity, View } from "react-native";
export function ListScreen() {
const data = [...Array(30).keys()]
return <View style={{ flex: 1, flexDirection: 'column' }}>
<View style={{ flex: 1, justifyContent: 'space-between', alignItems: 'baseline' }}>
<Text>Your Subscriptions</Text>
<TouchableOpacity>
<Text>Request</Text>