refactor: replace TextButton with HomeScreenTaskButton in home page

This commit is contained in:
Udhay-Adithya
2025-09-03 23:26:26 +05:30
parent 34c693528d
commit ebd184e14a
3 changed files with 57 additions and 66 deletions

View File

@@ -0,0 +1,34 @@
import 'package:flutter/material.dart';
class HomeScreenTaskButton extends StatelessWidget {
const HomeScreenTaskButton({
super.key,
required this.label,
required this.onPressed,
this.textAlign = TextAlign.center,
});
final String label;
final VoidCallback onPressed;
final TextAlign textAlign;
@override
Widget build(BuildContext context) {
return TextButton(
onPressed: onPressed,
style: TextButton.styleFrom(
side: BorderSide(
color: Theme.of(context).colorScheme.primary,
),
padding: const EdgeInsets.symmetric(
vertical: 0,
horizontal: 16,
),
),
child: Text(
label,
textAlign: textAlign,
),
);
}
}