From 25cbbc4303f7043c05118ca971c81e425792c352 Mon Sep 17 00:00:00 2001 From: Ivan <42812006+ivan-015@users.noreply.github.com> Date: Tue, 28 Jun 2022 17:49:45 -0600 Subject: [PATCH] Replace golden test Add new textstyles to the test --- .../global_styling/styling_text_styles.golden | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/test/golden/golden_files/global_styling/styling_text_styles.golden b/test/golden/golden_files/global_styling/styling_text_styles.golden index 94dc67b3..4af97716 100644 --- a/test/golden/golden_files/global_styling/styling_text_styles.golden +++ b/test/golden/golden_files/global_styling/styling_text_styles.golden @@ -27,4 +27,34 @@ static const TextStyle newStyle = TextStyle( fontStyle: FontStyle.normal, ) ; +/// headline1 description +static const TextStyle headline1 = TextStyle( + fontSize: 12.0, + fontWeight: FontWeight.w400, + letterSpacing: 0.0, + fontFamily: 'Inter', + decoration: TextDecoration.none, + fontStyle: FontStyle.normal, +) +; + +static const TextStyle mynewStyle = TextStyle( + fontSize: 12.0, + fontWeight: FontWeight.w400, + letterSpacing: 0.0, + fontFamily: 'Poppins', + decoration: TextDecoration.none, + fontStyle: FontStyle.normal, +) +; + +static const TextStyle headline2 = TextStyle( + fontSize: 12.0, + fontWeight: FontWeight.w700, + letterSpacing: 6.0, + fontFamily: 'Inter', + decoration: TextDecoration.none, + fontStyle: FontStyle.italic, +) +; }