diff --git a/lib/widgets/buttons/timer_button.dart b/lib/widgets/buttons/timer_button.dart deleted file mode 100644 index 75ebe06..0000000 --- a/lib/widgets/buttons/timer_button.dart +++ /dev/null @@ -1,30 +0,0 @@ -import 'package:flutter/material.dart'; - -class TimerButton extends StatelessWidget { - final VoidCallback onClicked; - final Icon icon; - final Color color; - - const TimerButton( - {Key? key, - required this.onClicked, - required this.icon, - required this.color}) - : super(key: key); - - @override - Widget build(BuildContext context) { - return Column( - children: [ - InkWell( - onTap: onClicked, - child: CircleAvatar( - backgroundColor: color, - radius: 50, - child: icon, - ), - ), - ], - ); - } -} diff --git a/lib/widgets/popup/missing_config_popup.dart b/lib/widgets/popup/missing_config_popup.dart deleted file mode 100644 index 620774e..0000000 --- a/lib/widgets/popup/missing_config_popup.dart +++ /dev/null @@ -1,22 +0,0 @@ -import 'package:flutter/material.dart'; - -class MissingConfigPopup extends StatelessWidget { - final String title; - final String text; - const MissingConfigPopup( - {super.key, required this.title, required this.text}); - - @override - Widget build(BuildContext context) { - return AlertDialog( - title: Text(title), - content: Column( - mainAxisSize: MainAxisSize.min, - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Text(text), - ], - ), - ); - } -}