Christian Hessenbruch

Results 17 comments of Christian Hessenbruch

Exactly. I switched to react-dnd-multi-backend and that fixed the problem. The thing that fooled me, is that IOS works with HTML5Backend. Now I'm struggling with scrolling while dragging (also Android)....

> @bastaware did you find any solution for "Now I'm struggling with scrolling while dragging (also Android). But that's an entirely different matter ;)" Sorry, I can't remember 🤔

> current This helped me on Mac OSX. Though I needed to upgrade firebase.tools using npm. First I had to upgrade **node**, also using npm. But when I ran `flutterfire...

Is there a workaround? I can't seem to catch the exception from the decoder? ``` get('api/v1/service', decoder: (json) => json) .then((value) => print("Answer $value"), onError: (e) => print("Never here")) .onError((error,...

Thanks for the fast response @bosskmk It works - well almost. The decimal point appears on the keyboard, but it doesn't do anything. The problem seems to be that I'm...

Yes, I believe the correct solution would be to allow `,` in the textfield according to locale. Another solution is to allow both `,` and `.` in the textfield and...

@bosskmk I'm not sure I understand your question. But if you mean how the number is stored in a database, it is stored using dot `.` as decimal. Comma `,`...

It still doesn't work in the IOS simulator. When i press `,` nothing happens?

I think the problem is that PlutoGrid DecimalTextInputFormatter can't handle comma being the decimal separator. If I remove the inputformatter in PlutoNumberCellState, then the textfield allows comma. `inputFormatters = [];`...

By the way. My PlutoColumn format still uses US formatting. I believe that the usual way in Flutter. I.e. disregard locale when defining formats. My definition: `PlutoColumnType.number(negative: false, format: '#,###.########'))`