ebelevics
ebelevics
Same issue, tried to run tests. Same error
Yeah I noticed also that first Insert in table takes around 10x times more than next inserts individually. Not sure why this is the case. ` I/flutter ( 9726): ⏳...
Yeah, this would have been great if valueTranformer would return FutureOr
One good solution would be, if child class @Dao annotation would have parameter "tableName" where value is replacing specific abstract string (for example $dbTable or whatever else in @Query('SELECT *...
```dart static const String tableName = "foo_table" @dao(tableName: tableName) abstract class PersonDao extends AbstractDao { } abstract class AbstractDao { //[FLOOR_TABLE_NAME] is being replaced during generation with respective tableName if...
In my opinion this an issue why I'm not using this package. I wanted that error text show only when I'm checking is form valid, not by touching. And it...
I still can't even with showErrors manage to do something similar to: ```dart if (_formKey.currentState!.validate()) { FocusScope.of(context).unfocus(); _formKey.currentState!.save(); ``` where on validate it checks or marks form fields as invalid...
Yeah that was only solution I could also came up with. Was hoping that form has parameter inside a class, that checks if form was validated manually with some class...
Just removed awesome_notifications package and yes, on press is working now. Please fix firebase_messaging with this package
I just recently migrated project from Bloc(Cubits) to Riverpod(StateNotifier), and while everything works fine, I can't call Future API methods right just before pushing new page inside AppRoutes: ``` if...