AlexanderArendar

Results 4 comments of AlexanderArendar

We have tried to run our flutter app for web, and everything works fine except for the payment. Would be really great if Square supports this plugin for WEB platform...

Hi benhurott, I used the `MaskedTextController` in my custom form field and noticed the same issue. Each time when the mask character is encountered the visible cursor position resets. Then...

Problem is actual and blocks usage of the package for a very basic case: reading an xlsx file with numeric floating point values. Would be great if this gets fixed.

Currently we can use following workaround elaborated from the comment of @niklasbartsch : ``` final row = sheet.rows[i]; final rawValue = row.elementAt(columnIndex)!.value as String; final date = DateTime.parse(rawValue); final diffDays...