Claudio Driussi
Claudio Driussi
To validate double I wrote my own validator: ``` Map? floatNumber(AbstractControl control) { final RegExp numberRegex = RegExp(r'[+-]?([0-9]*[.])?[0-9]+$'); if (control.isNull || !numberRegex.hasMatch(control.value.toString())) { return {'Invalid number': true}; } return null;...
I added secondsAlignment and animatedColon properties take a look on them. Hope you like. Claudio Driussi [slide_digital_clock.dart.zip](https://github.com/caglarylmz/slide_digital_clock/files/9034556/slide_digital_clock.dart.zip)
I have a lot of DBF files in Dbf3 format. If I try to read with Dbf5 class, the records are shifted by 1 byte and the reading of records...
Hi, from version 0.35 to 0.36 I seen that the current selected widget has changed the color of the frame. In 0.35 was RED in 0.36 is GREY, but since...
**Describe the bug** I can't upgrade my gradle version because i got: ``` FAILURE: Build failed with an exception. * What went wrong: The Android Gradle plugin supports only Kotlin...
Hi Alejandro, First of all thanks for your work. I found a issue using tkcalendar DateEntry, but I think the same can happen even with other components If I add...