Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

Commit

Permalink
fix(Toast): Change toast style to specification
Browse files Browse the repository at this point in the history
  • Loading branch information
moverval committed Jan 6, 2024
1 parent faacf34 commit bc00b2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/router/rut/toast/Toast.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Toast extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 10),
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 5),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
color: backgroundColor,
Expand All @@ -75,7 +75,7 @@ class Toast extends StatelessWidget {
Text(
message,
style: TextStyle(
fontSize: 12,
fontSize: 16,
fontFamily: "Roboto",
textBaseline: null,
color: textColor,
Expand Down

0 comments on commit bc00b2c

Please sign in to comment.