Alexandre Roux
Alexandre Roux
The underlying native APIs (Web, Node, Flutter) are still in flux (There are almost 3 different SDKs for javascript: browser, Node.js, admin sdk) and some features are different (`Query.select` not...
@simolus3 This is brilliant! Simple et efficient. I copied your database_tracker to sqflite_common_ffi since it solves the same issue. I slightly adapt your solution: https://github.com/tekartik/sqflite/blob/master/sqflite_common_ffi/lib/src/database_tracker.dart * I only store the...
> Did you see the problem this caused on iOS I only tested on Android and Linux. When a database is closed and another is opened, typically the pointer is...
What about other options that might not require a mandatory field - for example: `--version`
I started a fork (https://github.com/alextekartik/flutter_cache_manager and https://github.com/alextekartik/flutter_cached_network_image) where I experimented caching for the web by abstracting the file system (using fs_shim) and the storage (using idb_shim). It is definitely not...
I added to `RenderZBox`: ```dart @override Size computeDryLayout(BoxConstraints constraints) { return constraints.biggest; } ``` I'm no really sure sure what I am doing but it works for my experiment on...
Unfortunately that does not seem to be the case, I manage to use with dart 2.12 only by forcing the usage of non-nnbd packages (for example `path:
@lexaknyazev Thanks for the info, I was indeed able to compile nnbd packages using your trick. I personally don't really care about ddc as I enforce the usage of dart2js...
@SupposedlySam I have an helper package that does the build and provides some common method for building here (build + adding preamble): https://github.com/tekartik/build_node.dart/tree/main/packages/build_node and a raw node example that uses...
@SupposedlySam Are you using `node_io: ^2.1.0` ? ``` dart pub upgrade dart pub outdated --mode=null-safety ``` should help you find what is wrong