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,
|
color: Colors.lightBlue,
|
||||||
fontWeight: FontWeight.bold),
|
fontWeight: FontWeight.bold),
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
WhitelistingTextInputFormatter(RegExp(r"[\d.]"))
|
||||||
],
|
],
|
||||||
onChanged: (input) => {
|
onChanged: (input) => {
|
||||||
print("UnitQuantity value $input"),
|
print("UnitQuantity value $input"),
|
||||||
@ -163,7 +163,7 @@ class _CustomExerciseNewPageState extends State<CustomExercisePage> {
|
|||||||
color: Colors.deepOrange,
|
color: Colors.deepOrange,
|
||||||
fontWeight: FontWeight.bold),
|
fontWeight: FontWeight.bold),
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
WhitelistingTextInputFormatter (RegExp(r"[\d.]"))
|
||||||
],
|
],
|
||||||
onChanged: (input) => {
|
onChanged: (input) => {
|
||||||
print("Quantity value $input"),
|
print("Quantity value $input"),
|
||||||
|
@ -190,7 +190,7 @@ class CustomerModifyPage extends StatelessWidget{
|
|||||||
style: TextStyle(fontSize: 12),
|
style: TextStyle(fontSize: 12),
|
||||||
textFieldBloc: customerBloc.birthYearField,
|
textFieldBloc: customerBloc.birthYearField,
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter(RegExp(r"[\d]"), allow: true)
|
WhitelistingTextInputFormatter (RegExp(r"[\d]"))
|
||||||
],
|
],
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
fillColor: Colors.white24,
|
fillColor: Colors.white24,
|
||||||
@ -211,7 +211,7 @@ class CustomerModifyPage extends StatelessWidget{
|
|||||||
style: TextStyle(fontSize: 12),
|
style: TextStyle(fontSize: 12),
|
||||||
textFieldBloc: customerBloc.weightField,
|
textFieldBloc: customerBloc.weightField,
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter(RegExp(r"[\d]"), allow: true)
|
WhitelistingTextInputFormatter (RegExp(r"[\d]"))
|
||||||
],
|
],
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
fillColor: Colors.white24,
|
fillColor: Colors.white24,
|
||||||
|
@ -121,7 +121,7 @@ class _ExerciseNewPageState extends State<ExerciseNewPage> {
|
|||||||
color: Colors.lightBlue,
|
color: Colors.lightBlue,
|
||||||
fontWeight: FontWeight.bold),
|
fontWeight: FontWeight.bold),
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
WhitelistingTextInputFormatter (RegExp(r"[\d.]"))
|
||||||
],
|
],
|
||||||
onChanged: (input) => {
|
onChanged: (input) => {
|
||||||
print ("UnitQuantity value $input"),
|
print ("UnitQuantity value $input"),
|
||||||
@ -189,7 +189,7 @@ class _ExerciseNewPageState extends State<ExerciseNewPage> {
|
|||||||
color: Colors.deepOrange,
|
color: Colors.deepOrange,
|
||||||
fontWeight: FontWeight.bold),
|
fontWeight: FontWeight.bold),
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter(RegExp(r"[\d.]"), allow: true)
|
WhitelistingTextInputFormatter (RegExp(r"[\d.]"))
|
||||||
],
|
],
|
||||||
onChanged: (input) =>
|
onChanged: (input) =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user