
@override Widget build(BuildContext context) { return Container( child: TextFormField( maxLength: 25, initialValue: _initialValue, enabled: _enabled, readOnly: _readOnly, inputFormatters: <TextInputFormatter> [UpperCaseTextFormatter()], style: TextStyle(fontSize: 17), decoration: InputDecoration( labelText: _labelText, hintText: _labelText, filled: true, fillColor: Colors.white, contentPadding: new EdgeInsets.symmetric(vertical: 10, horizontal: 10), border: OutlineInputBorder(), ), ), );@override Widget build(BuildContext context) { return WillPopScope( onWillPop: () async => false, child: MaterialApp( title: 'SomeApp', debugShowCheckedModeBanner: false, theme: ThemeData( primarySwatch: Colors.blue, disabledColor: Colors.black, inputDecorationTheme: InputDecorationTheme( border: OutlineInputBorder(), contentPadding: EdgeInsets.symmetric( vertical: 22, horizontal: 26, ), labelStyle: TextStyle( fontSize: 17, decorationColor: Colors.red, ), )), home: LoginPage(), routes: routes, ), ); }}Thanks.
--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/7394ca7d-82dd-43a1-9858-10df1d6d3ef8%40googlegroups.com.
