mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: Handle minor lint errors
This commit is contained in:
parent
6abb761724
commit
cf99069804
@ -48,6 +48,7 @@ class CustomMaterialButton extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ignore: must_be_immutable
|
||||||
class TimerButton extends StatefulWidget {
|
class TimerButton extends StatefulWidget {
|
||||||
Widget label;
|
Widget label;
|
||||||
bool isFilled;
|
bool isFilled;
|
||||||
@ -119,7 +120,7 @@ class _TimerButtonState extends State<TimerButton> {
|
|||||||
onPressed: widget.isRunning ? null : widget.onTimerEnd,
|
onPressed: widget.isRunning ? null : widget.onTimerEnd,
|
||||||
child: Text(
|
child: Text(
|
||||||
widget.isRunning ? '${widget.seconds}' : 'Install',
|
widget.isRunning ? '${widget.seconds}' : 'Install',
|
||||||
style: TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
fontWeight: FontWeight.w600,
|
fontWeight: FontWeight.w600,
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user