finished assignment 3 - 100%

This commit is contained in:
Christopher Sanden
2026-03-16 17:42:22 +01:00
parent a4c2d55aea
commit ca915ec8e8
33 changed files with 2869 additions and 711 deletions

View File

@@ -1,6 +1,7 @@
import { StyleSheet, Text, type TextProps } from 'react-native'
import { Text, type TextProps } from 'react-native'
import { useThemeColor } from '@/hooks/use-theme-color'
import { themedTextStyles as styles } from '@/src/styles/app-styles'
export type ThemedTextProps = TextProps & {
lightColor?: string
@@ -32,29 +33,3 @@ export function ThemedText({
/>
)
}
const styles = StyleSheet.create({
default: {
fontSize: 16,
lineHeight: 24,
},
defaultSemiBold: {
fontSize: 16,
lineHeight: 24,
fontWeight: '600',
},
title: {
fontSize: 32,
fontWeight: 'bold',
lineHeight: 32,
},
subtitle: {
fontSize: 20,
fontWeight: 'bold',
},
link: {
lineHeight: 30,
fontSize: 16,
color: '#0a7ea4',
},
})