Skip to content

Instantly share code, notes, and snippets.

@gupta-shrinath
Created October 26, 2021 11:43
Show Gist options
  • Save gupta-shrinath/32728b10d1da5139da4e8adf6140c0b3 to your computer and use it in GitHub Desktop.
Save gupta-shrinath/32728b10d1da5139da4e8adf6140c0b3 to your computer and use it in GitHub Desktop.
TextFormField(
keyboardType: keyboard,
controller: controller,
maxLines: lines,
decoration: InputDecoration(
//contentPadding: EdgeInsets.all(12),
hintText: placeholder,
enabledBorder: border,
prefixIcon: SizedBox(
child: Center(
child: Text('₹'),
),
),
),
onChanged: onChangeFunction != null ? onChangeFunction : null,
onFieldSubmitted: onFieldSubmitted != null ? onFieldSubmitted : null,
onEditingComplete:
onEditingComplete != null ? onEditingComplete : null,
onTap: onTap != null ? onTap : null,
onSaved: onSaved != null ? onSaved : null,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment