This commit is contained in:
Felipe
2024-03-11 09:24:29 -05:00
parent a71fc9efb6
commit 13896f2b6d
10 changed files with 290 additions and 451 deletions
+3 -3
View File
@@ -18,10 +18,10 @@ class GeneralPrimaryButton extends StatelessWidget {
onPressed: isEnabled ? onPressed : null,
style: ElevatedButton.styleFrom(
backgroundColor: Theme.of(context).colorScheme.primary,
elevation: 0,
elevation: 5,
minimumSize: Size(
MediaQuery.of(context).size.width * 0.5,
50,
55,
),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(50)),
@@ -32,7 +32,7 @@ class GeneralPrimaryButton extends StatelessWidget {
style: TextStyle(
color: isEnabled ? Colors.white : Colors.black,
fontWeight: FontWeight.bold,
fontSize: 16,
fontSize: 18,
),
),
);