field property

TextFormField field
latefinal

Implementation

late final TextFormField field = TextFormField(
  decoration: InputDecoration(
    contentPadding: const EdgeInsets.fromLTRB(12.0, 24.0, 12.0, 12.0),
    border: theme.inputDecorationTheme.border,
    enabledBorder: theme.inputDecorationTheme.border,
  ),
  cursorColor: colorScheme.onBackground,
  cursorWidth: 1.0,
  cursorHeight: 16,
  onChanged: onChanged,
  obscureText: obscureText ?? false,
  controller: TextEditingController(),
);