wt1.1a fb ios dowgraded to flutter 1.7.5
This commit is contained in:
parent
a9682fb072
commit
65c9312f5d
@ -121,7 +121,7 @@ class _CustomExerciseNewPageState extends State<CustomExercisePage> {
|
||||
color: Colors.lightBlue,
|
||||
fontWeight: FontWeight.bold),
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
||||
WhitelistingTextInputFormatter(RegExp(r"[\d.]"))
|
||||
],
|
||||
onChanged: (input) => {
|
||||
print("UnitQuantity value $input"),
|
||||
@ -163,7 +163,7 @@ class _CustomExerciseNewPageState extends State<CustomExercisePage> {
|
||||
color: Colors.deepOrange,
|
||||
fontWeight: FontWeight.bold),
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
||||
WhitelistingTextInputFormatter (RegExp(r"[\d.]"))
|
||||
],
|
||||
onChanged: (input) => {
|
||||
print("Quantity value $input"),
|
||||
|
@ -190,7 +190,7 @@ class CustomerModifyPage extends StatelessWidget{
|
||||
style: TextStyle(fontSize: 12),
|
||||
textFieldBloc: customerBloc.birthYearField,
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter(RegExp(r"[\d]"), allow: true)
|
||||
WhitelistingTextInputFormatter (RegExp(r"[\d]"))
|
||||
],
|
||||
decoration: InputDecoration(
|
||||
fillColor: Colors.white24,
|
||||
@ -211,7 +211,7 @@ class CustomerModifyPage extends StatelessWidget{
|
||||
style: TextStyle(fontSize: 12),
|
||||
textFieldBloc: customerBloc.weightField,
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter(RegExp(r"[\d]"), allow: true)
|
||||
WhitelistingTextInputFormatter (RegExp(r"[\d]"))
|
||||
],
|
||||
decoration: InputDecoration(
|
||||
fillColor: Colors.white24,
|
||||
|
@ -121,7 +121,7 @@ class _ExerciseNewPageState extends State<ExerciseNewPage> {
|
||||
color: Colors.lightBlue,
|
||||
fontWeight: FontWeight.bold),
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
||||
WhitelistingTextInputFormatter (RegExp(r"[\d.]"))
|
||||
],
|
||||
onChanged: (input) => {
|
||||
print ("UnitQuantity value $input"),
|
||||
@ -189,7 +189,7 @@ class _ExerciseNewPageState extends State<ExerciseNewPage> {
|
||||
color: Colors.deepOrange,
|
||||
fontWeight: FontWeight.bold),
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
||||
WhitelistingTextInputFormatter (RegExp(r"[\d.]"))
|
||||
],
|
||||
onChanged: (input) =>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user