1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import type { PropsWithChildren, } from 'react';
import { StyleSheet, View, useColorScheme } from 'react-native';
import { ThemedView } from '@/components/ThemedView';
import { ThemedText } from './ThemedText';
type Props = PropsWithChildren<{}>;
export default function ParallaxScrollView({
children,
}: Props) {
const theme = useColorScheme() ?? 'light';
return (
<ThemedView style={styles.container}>
<View style={{
paddingTop: 50,
padding: 10,
backgroundColor: (theme === 'light' ? 'rgba(0, 0, 0, .5)' : 'rgba(100, 100, 100, .5)'),
}}>
<ThemedText type="title" style={{ color: 'white' }}>CAS4</ThemedText>
</View>
<ThemedView style={styles.content}>{children}</ThemedView>
</ThemedView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
nav: {
paddingTop: 50,
padding: 10,
},
header: {
height: 250,
overflow: 'hidden',
},
content: {
flex: 1,
padding: 32,
gap: 16,
overflow: 'hidden',
},
});
|