Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
bb4b5a3
init ios demo
coom1222 May 22, 2026
d899535
feat: 역점역(점자→한글) 기능 구현 및 점자 입력 키보드 추가
yeoneunseo May 29, 2026
230740a
chore: Fix script
coom1222 May 29, 2026
f240b1d
Merge remote-tracking branch 'origin/main' into demo-ios-app
coom1222 May 29, 2026
a5353d6
Delete README
coom1222 May 29, 2026
74734a9
chore: init android
Nohgh May 31, 2026
41210d5
style(fix): BottomTabBar - figma와 일치하도록 수정
Nohgh May 31, 2026
7638033
style(add): Translator Page - 입력 안내문자에 점자 디자인 추가
Nohgh May 31, 2026
5fc2704
fix: history 개수 제한 제거
Nohgh May 31, 2026
1da7f74
fix: 된소리 초성(ㄲ·ㄸ·ㅃ·ㅆ·ㅉ) 디코딩 지원
yeoneunseo May 31, 2026
fb56a28
fix: parseToCells에서 일반 공백·줄바꿈을 점자 공백으로 보존
yeoneunseo May 31, 2026
c95c158
test: 된소리 복합 단어 테스트 추가
yeoneunseo May 31, 2026
f5ee8b3
fix: EditableBrailleCell에 인덱스 대신 안정적인 고유 key 사용
yeoneunseo May 31, 2026
a2cfdc7
refactor: 일반·수학·역점역 3가지 모드를 단일 토글로 통합
yeoneunseo May 31, 2026
5a57076
Merge branch 'demo-ios-app' into demo-ios-app
jessieyeon May 31, 2026
34894a4
Merge pull request #1 from jessieyeon/demo-ios-app
coom1222 May 31, 2026
56130d3
packages/node/src/lib.rs에 빠진 괄호 추가
coom1222 May 31, 2026
77d09a6
Merge remote-tracking branch 'teammate/demo-ios-app' into demo-ios-app
Nohgh Jun 1, 2026
b76a2b7
Merge pull request #2 from Nohgh/demo-ios-app
coom1222 Jun 1, 2026
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

25 changes: 25 additions & 0 deletions apps/mobile/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
df/
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
7 changes: 7 additions & 0 deletions apps/mobile/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Tauri + React + Typescript

This template should help get you started developing with Tauri, React and Typescript in Vite.

## Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
350 changes: 350 additions & 0 deletions apps/mobile/bun.lock

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions apps/mobile/devup.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"theme": {
"colors": {
"default": {
"bg": "#F2F2F2",
"surface": "#FFFFFF",
"text": "#1A1A1A",
"textMuted": "#6B6B6B",
"textSubtle": "#9A9A9A",
"border": "#E5E5E5",
"primary": "#1A1A1A",
"primaryText": "#FFFFFF",
"danger": "#E03E5C",
"dangerSoft": "#FDECEF",
"dangerSoftBorder": "#F5B8C1",
"accent": "#3FB6A8",
"star": "#F5C518",
"tabBar": "#2A2A2A"
}
}
}
}
15 changes: 15 additions & 0 deletions apps/mobile/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<title>Braillify</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
36 changes: 36 additions & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "mobile",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"check": "tsc && cargo check --manifest-path src-tauri/Cargo.toml",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"ios:dev": "tauri ios dev",
"ios:run": "tauri ios run",
"ios:build": "tauri ios build",
"tauri": "tauri"
},
"dependencies": {
"@devup-ui/components": "^0.1.45",
"@devup-ui/react": "^1.0.36",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2",
"braillify": "workspace:*",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@devup-ui/vite-plugin": "^1.0.59",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.6.0"
}
}
7 changes: 7 additions & 0 deletions apps/mobile/src-tauri/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
/target/

# Generated by Tauri
# will have schema files for capabilities auto-completion
/gen/schemas
Loading
Loading