wt1.1a fb ios dowgraded to flutter 1.7.5

This commit is contained in:
Bossanyi Tibor 2020-08-17 20:39:34 +02:00
parent a9682fb072
commit 65c9312f5d
3 changed files with 6 additions and 6 deletions

View File

@ -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"),

View File

@ -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,

View File

@ -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) =>
{