Ben Heidemann

Results 76 comments of Ben Heidemann

> In Deno you can install a JSR package with `deno install jsr:@example/package`. This is great, but for me part of the appeal of JSR is that it just works...

> [parse exception: Only 1 table definition allowed in MVP (at 0:417)] > Fatal: error in parsing input > Error: failed to execute `wasm-opt`: exited with exit code: 1 >...

For reference, re-running with `-Xlint:deprecation` yields the following output: ``` ####################.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.0.13/android/src/main/java/com/pichillilorenzo/flutter_inappwebview_android/InAppWebViewFlutterPlugin.java:29: warning: [deprecation] FlutterView in io.flutter.view has been deprecated import io.flutter.view.FlutterView; ^ ####################.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.0.13/android/src/main/java/com/pichillilorenzo/flutter_inappwebview_android/webview/in_app_webview/InAppWebViewClient.java:14: warning: [deprecation] CookieSyncManager in android.webkit has been...

I've raised a [PR](https://github.com/casey/just/pull/2438) to implement this. However, I've implemented it as `[working-directory(DIR)]` instead of `[cd(DIR)]` since this is consistent with the `working-directory` setting.

@Matheusbortolo Yes, you can use it with GetX: ```dart final GlobalKey navigatorKey = GlobalKey(); // ... GetMaterialApp( navigatorKey: navigatorKey, // ... builder: (context, child) => UpgradeAlert( navigatorKey: navigatorKey, // ......

@vickyGeo I didn't do anything specific. If you share your code I might be able to help.

> [@bcheidemann](https://github.com/bcheidemann) navigatorKey used multiple times in your example code above is that intentional? @vickyGeo yes it is - very much so! :) EDIT: Note that I'm passing the global...

> Once TS restores the behavior, we too can restore the old behavior. @Sayan751 Do you have reason to believe that design time type reflection will be supported again? On...

Any update on this? @artsooter I tried your fix (https://github.com/bcheidemann/fl_chart/commit/f8d5dac602ad1a112098bbbf19b188f454730753) which somewhat works. **Before (without `preventCurveOvershooting`)** **Before (with `preventCurveOvershooting`)** **After (with `preventCurveOvershooting`)** --- There is no more overshooting, but the...

Hey, FWIW I am also seeing thread unsafe behaviour when using cryptoki and SoftHSM (I haven't tried other libraries). Sometimes I get: ``` signal: 11, SIGSEGV: invalid memory reference ```...