From ec69117e6fad64203201e7d5daa0baa16fc6637c Mon Sep 17 00:00:00 2001 From: Ismail Ali Date: Tue, 28 Apr 2026 16:14:36 +0200 Subject: [PATCH] Add iPhone dictation guidance --- src/screens/ChatScreen.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/screens/ChatScreen.tsx b/src/screens/ChatScreen.tsx index bf5a392..73c86be 100644 --- a/src/screens/ChatScreen.tsx +++ b/src/screens/ChatScreen.tsx @@ -1,6 +1,6 @@ import type { NativeStackScreenProps } from '@react-navigation/native-stack'; import { useState } from 'react'; -import { FlatList, KeyboardAvoidingView, Platform, StyleSheet, TextInput, View } from 'react-native'; +import { FlatList, KeyboardAvoidingView, Platform, StyleSheet, Text, TextInput, View } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import { ChatBubble, type ChatMessage } from '../components/ChatBubble'; @@ -59,11 +59,14 @@ export function ChatScreen({ route }: ChatScreenProps) { + + Tip: tap this field and use the iPhone keyboard microphone to dictate your sentence. + @@ -123,4 +126,9 @@ const styles = StyleSheet.create({ padding: 14, textAlignVertical: 'top', }, + dictationHint: { + color: colors.textSecondary, + fontSize: 12, + lineHeight: 17, + }, });