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

Commit

Permalink
Replace golden test
Browse files Browse the repository at this point in the history
Add new textstyles to the test
  • Loading branch information
ivan-015 committed Jun 28, 2022
1 parent 8993421 commit 25cbbc4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions test/golden/golden_files/global_styling/styling_text_styles.golden
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
;
}

0 comments on commit 25cbbc4

Please sign in to comment.