figtree static method
- {TextStyle? textStyle,
- Color? color,
- Color? backgroundColor,
- double? fontSize,
- FontWeight? fontWeight,
- FontStyle? fontStyle,
- double? letterSpacing,
- double? wordSpacing,
- TextBaseline? textBaseline,
- double? height,
- Locale? locale,
- Paint? foreground,
- Paint? background,
- List<
Shadow> ? shadows, - List<
FontFeature> ? fontFeatures, - TextDecoration? decoration,
- Color? decorationColor,
- TextDecorationStyle? decorationStyle,
- double? decorationThickness}
Applies the Figtree font family from Google Fonts to the
given textStyle
.
See:
Implementation
static TextStyle figtree({
TextStyle? textStyle,
Color? color,
Color? backgroundColor,
double? fontSize,
FontWeight? fontWeight,
FontStyle? fontStyle,
double? letterSpacing,
double? wordSpacing,
TextBaseline? textBaseline,
double? height,
Locale? locale,
Paint? foreground,
Paint? background,
List<ui.Shadow>? shadows,
List<ui.FontFeature>? fontFeatures,
TextDecoration? decoration,
Color? decorationColor,
TextDecorationStyle? decorationStyle,
double? decorationThickness,
}) {
final fonts = <GoogleFontsVariant, GoogleFontsFile>{
const GoogleFontsVariant(
fontWeight: FontWeight.w300,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'e5b374320309cdff58c8a0d59e08f639381d1ddac1f635c636974bf9cef368ef',
36600,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w400,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'ca6bd0c56ce1ea48c973336632f12d35c1b11e3dc2a157301ac32473b8a9ae94',
36744,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w500,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'53735016078317d2f8529b4e6b43c1e08dc22a4ed639087e5aae81782f96729b',
36756,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w600,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'd4e67c26dd82001c03557855d6df59ea2cc626e0c6e534ae817b2ff5a8e15e39',
36820,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w700,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'24451ab6373d3a6288a56f27132cca24704a3e3c6606339bdd86bf4e3e4ffff6',
36764,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w800,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'6dd79d0a51996f1c043ca5ce65409110d4a3e03b452bd67ea7548721026359d5',
36852,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w900,
fontStyle: FontStyle.normal,
): GoogleFontsFile(
'99c382356e8450f0e2ea2a6dfca228682694ba5fa124e5efcb2fe6bde7af5bc7',
36812,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w300,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'767bf11e311a460cfb59f3238e647fe8201db35776c567e41b2bce97b5f093e3',
36628,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w400,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'53a6dc19970d2157987c871d5ffdec8fd756b168d8d6c8be00edbec1143d6fd5',
36644,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w500,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'516a74649610af4a81c40f28a68fd3dc398955dee62e1c506aa2f5534e6508c9',
36752,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w600,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'64c2c9d6252c014c654946a8a7d2974b3ee6b8520998a0d5aabbff3bf62d3a3c',
36832,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w700,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'8cafb98f1f81054195448ab7ca15b347ffc462f7d9b5ce5280ea70fbf72a2819',
36756,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w800,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'c2cc08436cc9eea7f55271941931c679240f0efd8e82238d4d13c2aa47d55c45',
36832,
),
const GoogleFontsVariant(
fontWeight: FontWeight.w900,
fontStyle: FontStyle.italic,
): GoogleFontsFile(
'07b28272fa8bb37be8d85b7416b86464a5f28149c2876f4548f0e5646d208226',
36740,
),
};
return googleFontsTextStyle(
textStyle: textStyle,
fontFamily: 'Figtree',
color: color,
backgroundColor: backgroundColor,
fontSize: fontSize,
fontWeight: fontWeight,
fontStyle: fontStyle,
letterSpacing: letterSpacing,
wordSpacing: wordSpacing,
textBaseline: textBaseline,
height: height,
locale: locale,
foreground: foreground,
background: background,
shadows: shadows,
fontFeatures: fontFeatures,
decoration: decoration,
decorationColor: decorationColor,
decorationStyle: decorationStyle,
decorationThickness: decorationThickness,
fonts: fonts,
);
}