UI improvements: dynamic event text, remove camera indicator, fontawesome footer icons

This commit is contained in:
2026-06-12 23:49:57 +02:00
parent dd0876d977
commit b8969415f4
6 changed files with 19 additions and 14 deletions
+2 -2
View File
@@ -72,7 +72,7 @@ export default function App() {
const handleSaveEventName = async () => {
if (!settings) return;
const newName = tempEventName.trim() || 'Event';
const newName = tempEventName.trim() || 'Schnappix-Party';
const updated = { ...settings, eventText: newName };
await saveSettings(updated);
setSettings(updated);
@@ -233,7 +233,7 @@ export default function App() {
</Text>
<TextInput
style={styles.modalInput}
placeholder="z.B. Jannik's Party"
placeholder="Schnappix-Party"
placeholderTextColor="#666"
value={tempEventName}
onChangeText={setTempEventName}