Skip to content

Commit fd94bb6

Browse files
committed
docs: update README with Korean version
1 parent 0333edf commit fd94bb6

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

README.KO.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# 📦 dial_timer
2+
3+
[🇺🇸 English](./README.md) | [🇰🇷 한국어](./README.KO.md)
4+
5+
Flutter용 아름다운 원형 다이얼 타이머 위젯입니다.
6+
7+
원형 다이얼 UI를 드래그하여 간편하게 분(minute) 단위 시간을 선택할 수 있습니다.
8+
9+
---
10+
11+
## 🚀 Installation
12+
13+
`pubspec.yaml` 파일에 다음을 추가하세요:
14+
15+
```yaml
16+
dependencies:
17+
dial_timer: ^0.0.1
18+
```
19+
20+
## 사용법
21+
22+
```dart
23+
import 'package:dial_timer/dial_timer.dart';
24+
25+
CircularTimer(
26+
onMinutesChanged: (minutes) {
27+
print('$minutes 분이 선택되었습니다.');
28+
},
29+
)
30+
```
31+
32+
## ✨ 주요 기능
33+
- 원형 드래그 타이머 UI
34+
- 1분 ~ 60분 간편 선택
35+
- 드래그 가능 여부 설정 지원
36+
- 쉬는 시간 모드 스타일링 (isBreakTime: true)
37+
38+
## 📂 예제
39+
example/ 폴더에 전체 작동 예제가 제공됩니다.
40+
41+
```shell
42+
cd example
43+
flutter run
44+
```

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# 📦 dial_timer
22

3+
[🇺🇸 English](./README.md) | [🇰🇷 한국어](./README.KO.md)
4+
35
A beautiful circular dial timer widget for Flutter.
46

57
Easily select a time (in minutes) by dragging around a circular dial UI.

0 commit comments

Comments
 (0)