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
9 changes: 6 additions & 3 deletions client/app/camera.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,12 @@ export default function CameraScreen() {
className="mb-3 w-full max-w-2xl self-center rounded-xl border px-4 py-3"
style={{ borderColor: colors.border, backgroundColor: cardTranslucent }}
>
<View className="flex-row items-stretch gap-3">
<View className="flex-row items-stretch">
{/* Word (2/3) */}
<View style={{ flex: 2, borderRightWidth: 1, borderRightColor: colors.border }}>
<View
className="pr-4"
style={{ flex: 2.2, borderRightWidth: 1, borderRightColor: colors.text }}
>
<Text
className="mb-1 text-xs font-medium md:text-sm"
style={{ color: colors.textMuted }}
Expand All @@ -227,7 +230,7 @@ export default function CameraScreen() {
</View>

{/* Current Letter (1/3) */}
<View style={{ flex: 1 }} className="items-center justify-center">
<View style={{ flex: 1 }} className="items-center justify-center pl-4">
<Text
className="mb-1 text-xs font-medium md:text-sm"
style={{ color: colors.textMuted }}
Expand Down
38 changes: 36 additions & 2 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "smartglasses",
"main": "expo-router/entry",
"version": "1.0.0",
"version": "1.1.0",
"scripts": {
"start": "expo start",
"android": "expo start --android",
Expand Down
Loading