瀏覽代碼

Increase the frequency at which the progress bar is refreshed

vishnukvmd 2 年之前
父節點
當前提交
082500c3d1
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lib/ui/code_widget.dart

+ 2 - 1
lib/ui/code_widget.dart

@@ -27,7 +27,8 @@ class _CodeWidgetState extends State<CodeWidget> {
   void initState() {
     super.initState();
     _updateTimeRemaining();
-    _everySecondTimer = Timer.periodic(const Duration(seconds: 1), (Timer t) {
+    _everySecondTimer =
+        Timer.periodic(const Duration(milliseconds: 200), (Timer t) {
       setState(() {
         _updateTimeRemaining();
       });