text static method

  1. @Deprecated('Use label instead')
TextStyle text({
  1. Color? color,
})

Fonte text Font family: Open Sans Font size: 16 Font weight: 400 Height: 150%

Implementation

@Deprecated('Use label instead')
static TextStyle text({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'OpenSans',
    fontSize: 16.0,
    fontWeight: FontWeight.w400,
    height: 1.5,
    package: package,
  );
}