File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
Original file line number Diff line number Diff line change 1
1
# 📦 dial_timer
2
2
3
+ [ 🇺🇸 English] ( ./README.md ) | [ 🇰🇷 한국어] ( ./README.KO.md )
4
+
3
5
A beautiful circular dial timer widget for Flutter.
4
6
5
7
Easily select a time (in minutes) by dragging around a circular dial UI.
You can’t perform that action at this time.
0 commit comments