Guest User

Untitled

a guest
Oct 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. Widget _buildPhoneField(context) {
  2. final formBloc = LoginFormProvider.of(context);
  3. return TextField(
  4. textAlign: TextAlign.justify,
  5. style: TextStyle(
  6. fontSize: 27.0, fontWeight: FontWeight.bold, color:Colors.black),
  7. keyboardType: TextInputType.phone,
  8. maxLines: 1,
  9. maxLength: 9,
  10. autofocus: false,
  11. textInputAction: TextInputAction.next,
  12. onEditingComplete: () => print('onEditingComplete'),
  13. onChanged: (s) => formBloc.phoneFieldSink.add(s),
  14. onSubmitted: (s) => print('onSubmitted: $s'),
  15. decoration: InputDecoration(
  16. labelText: 'Phone',
  17. border: OutlineInputBorder(borderRadius: BorderRadius.circular(8.0))),
  18. );
  19. }
Add Comment
Please, Sign In to add comment