Add splash screen handling and logo to HomeScreen, update dependencies
All checks were successful
Build App / build-android (push) Successful in 7m2s
Build App / build-web (push) Successful in 29s
Build App / release (push) Successful in 11s

This commit is contained in:
Space-Banane
2026-03-10 21:13:25 +01:00
parent 60909913a5
commit 51c54d4892
6 changed files with 226 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import React from 'react';
import { ScrollView, Text, TouchableOpacity, View } from 'react-native';
import { ScrollView, Text, TouchableOpacity, View, Image } from 'react-native';
import TopControls from '../components/TopControls';
export default function HomeScreen({
@@ -18,6 +18,10 @@ export default function HomeScreen({
return (
<View style={[styles.root, { backgroundColor: theme.bg }]}>
<ScrollView contentContainerStyle={styles.scroll} keyboardShouldPersistTaps="handled">
<Image
source={require('../../assets/icon.png')}
style={[styles.logo, pinkMode && { borderColor: theme.accent, borderWidth: 2 }]}
/>
<Text
style={[
styles.title,