Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
215 changes: 69 additions & 146 deletions app/(tabs)/index.tsx

Large diffs are not rendered by default.

431 changes: 208 additions & 223 deletions app/(tabs)/modules.tsx

Large diffs are not rendered by default.

411 changes: 141 additions & 270 deletions app/(tabs)/settings.tsx

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,33 @@ export default function RootLayout() {
headerShadowVisible: false,
}}
/>
<Stack.Screen
name="settings/ollama"
options={{
title: 'Ollama',
headerStyle: { backgroundColor: '#0b1120' },
headerTintColor: '#e8edf5',
headerShadowVisible: false,
}}
/>
<Stack.Screen
name="settings/openai"
options={{
title: 'OpenAI API',
headerStyle: { backgroundColor: '#0b1120' },
headerTintColor: '#e8edf5',
headerShadowVisible: false,
}}
/>
<Stack.Screen
name="settings/claude"
options={{
title: 'Claude API',
headerStyle: { backgroundColor: '#0b1120' },
headerTintColor: '#e8edf5',
headerShadowVisible: false,
}}
/>
</Stack>
<CameraCaptureModalHost />
<QrScanModalHost />
Expand Down
Loading
Loading