From 5a7e1ec6b29e75a3b1aa5fa4bef1b4f2ab6e5286 Mon Sep 17 00:00:00 2001 From: Jonathan <121642441+FlamongoBird@users.noreply.github.com> Date: Fri, 7 Feb 2025 14:45:22 -0600 Subject: [PATCH] Update buttons.md two really tiny changes but I noticed them in the docs and it was annoying me --- src/content/release/breaking-changes/buttons.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/release/breaking-changes/buttons.md b/src/content/release/breaking-changes/buttons.md index 934fc8c42f..02b659f853 100644 --- a/src/content/release/breaking-changes/buttons.md +++ b/src/content/release/breaking-changes/buttons.md @@ -228,7 +228,7 @@ like a default `FlatButton`: ```dart final ButtonStyle flatButtonStyle = TextButton.styleFrom( - foregroundColor Colors.black87, + foregroundColor: Colors.black87, minimumSize: Size(88, 36), padding: EdgeInsets.symmetric(horizontal: 16), shape: const RoundedRectangleBorder( @@ -248,7 +248,7 @@ Similarly, to make an `ElevatedButton` look like a default `RaisedButton`: ```dart final ButtonStyle raisedButtonStyle = ElevatedButton.styleFrom( foregroundColor: Colors.black87, - backgroundColor Colors.grey[300], + backgroundColor: Colors.grey[300], minimumSize: Size(88, 36), padding: EdgeInsets.symmetric(horizontal: 16), shape: const RoundedRectangleBorder(