Overhauled layout building

This commit is contained in:
2025-11-11 15:34:31 +01:00
parent 6cbc64c042
commit 4f8ba002d3
5 changed files with 161 additions and 112 deletions

View File

@@ -19,15 +19,14 @@ class _QuickCreateButtonState extends State<QuickCreateButton> {
Widget build(BuildContext context) {
return ElevatedButton(
onPressed: widget.onPressed,
style: ElevatedButton.styleFrom(
minimumSize: const Size(140, 40),
minimumSize: const Size(140, 45),
backgroundColor: CustomTheme.primaryColor,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
),
child: Text(
widget.text,
style: const TextStyle(fontWeight: FontWeight.bold),
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16),
),
);
}