File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
- // ignore_for_file: constant_identifier_names
2
-
3
1
library circular_countdown_timer;
4
2
5
3
import 'package:flutter/material.dart' ;
4
+ import 'countdown_text_format.dart' ;
6
5
import 'custom_timer_painter.dart' ;
7
6
7
+ export 'countdown_text_format.dart' ;
8
+
8
9
/// Create a Circular Countdown Timer.
9
10
class CircularCountDownTimer extends StatefulWidget {
10
11
/// Filling Color for Countdown Widget.
@@ -419,10 +420,3 @@ class CountDownController {
419
420
return "" ;
420
421
}
421
422
}
422
-
423
- class CountdownTextFormat {
424
- static const String HH_MM_SS = "HH:mm:ss" ;
425
- static const String MM_SS = "mm:ss" ;
426
- static const String SS = "ss" ;
427
- static const String S = "s" ;
428
- }
Original file line number Diff line number Diff line change
1
+ // ignore_for_file: constant_identifier_names
2
+ class CountdownTextFormat {
3
+ static const String HH_MM_SS = "HH:mm:ss" ;
4
+ static const String MM_SS = "mm:ss" ;
5
+ static const String SS = "ss" ;
6
+ static const String S = "s" ;
7
+ }
You can’t perform that action at this time.
0 commit comments