textStyle property

TextStyle? textStyle
final

textStyle Define the text style.

You can customise the text style how you prefer example:

textStyle: TextStyle(
  color: Colors.red[800],
  fontSize: 16.0,
  fontWeight: FontWeight.bold,
  fontStyle: FontStyle.italic,
  letterSpacing: 2.0,
),

![](https://raw.githubusercontent.com/elbeicktalat/flutter_auth_buttons/master/doc/api/assets/text-style.png)

Implementation

final TextStyle? textStyle;