Cássio Seffrin
Cássio Seffrin
Same here: with: Intel Mac (21.5-inch, 2017) 2,3 GHz Dual-Core Intel Core i5 32 GB 2133 MHz DDR4 Intel Iris Plus Graphics 640 1536 MB and VSCode. For me it's...
try this: File cropImage = await ImageCropper.cropImage( sourcePath: imageFile.path, aspectRatioPresets: [ CropAspectRatioPreset.square, CropAspectRatioPreset.ratio3x2, CropAspectRatioPreset.original, CropAspectRatioPreset.ratio4x3, CropAspectRatioPreset.ratio16x9, ], androidUiSettings: AndroidUiSettings( **hideBottomControls: true**), iosUiSettings: IOSUiSettings( **rotateButtonsHidden: true,** ));
The error was been caused when I have changed the text of MoneyMaskedTextController to blank text. _precoController.text = ''; I switch to: _precoController.updateValue(0); The error have disappeared. The downside is...
Seizing the opportunity of this thread. Could I create a default value as the output a query: Default value: SELECT strftime('%s', 'now') || (last_insert_rowid()+1) @ColumnInfo(name: "timestampId", defaultValue: SELECT strftime('%s', 'now')...
Hello, Any news about ColumnInfo.defaultValue?
@islinjj may you have your file already in version 2 (for some preview migration, once it's made the number never back), in this case you could try to change it...
It would be nice if the DAO could parse the generic results into primitive types. I understand the current limitations. As an alternative I think it's possible to create a...
Thks @mqus . Look: https://www.sqlite.org/lang_altertable.html > SQLite supports a limited subset of ALTER TABLE. The ALTER TABLE command in SQLite allows the user to rename a table or to add...
In the last versions of SQLite they are improving the procedures for altering tables, however we always have users with older versions of android and consequently SQLite ( KitKat and...
Ok, I have understood your suggestion workaround (2.). Tomorrow I'll make a try. I have another idea that consists in create 3 migration scripts instead one: 1st: foreign_keys = OFF,...