parent
70251be997
commit
45d11faa1f
@ -0,0 +1,30 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class ClockTimerProvider extends ChangeNotifier{
|
||||
///登录页验证码计时器
|
||||
int second = 60;
|
||||
bool timerStart = false;
|
||||
Timer? timer;
|
||||
|
||||
void startTimer() {
|
||||
timerStart = true;
|
||||
timer = Timer.periodic(Duration(seconds: 1), (timer) {
|
||||
if (second > 0) {
|
||||
second--;
|
||||
notifyListeners();
|
||||
} else {
|
||||
stopTimer();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
void stopTimer() {
|
||||
second = 60;
|
||||
timerStart = false;
|
||||
timer?.cancel();
|
||||
timer = null;
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue