- Single-screen chat interface with Timmy's sovereign AI personality - Text messaging with real-time AI responses via server chat API - Voice recording and playback with waveform visualization - Image sharing (camera + photo library) with full-screen viewer - File attachments via document picker - Dark arcane theme matching the Timmy Time dashboard - Custom app icon with glowing T circuit design - Timmy system prompt ported from dashboard prompts.py - Unit tests for chat utilities and message types
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
/**
|
|
* Re-export Pressable with proper typing for style callbacks.
|
|
* NativeWind disables className on Pressable, so we always use the style prop.
|
|
*/
|
|
import { Pressable } from "react-native";
|
|
export default Pressable;
|