style property

TextStyle? style
final

The TextStyle that will passed down to TextFormField.style. This is the style of the text being edited.

For e.g following will make the numbers appear green.

NumberInputPrefabbed.squaredButtons(
  controller: TextEditingController(),
  style: TextStyle(
        color: Colors.green,
        fontSize: 28,
  ),
);
```

Implementation

final TextStyle? style;