dastein1

Results 11 comments of dastein1

@rivella50 I was able to work around this problem temporarily by slightly delaying the _locale()_ call via `await Future.microtask(() => {Jiffy.locale(localeName)})`.

I created a separate localization-delegate like so: ``` import 'package:flutter/material.dart'; import 'package:intl/intl.dart'; import 'package:jiffy/jiffy.dart'; // for demo only ... depends on your app const supportedLocales = [ Locale('en', ''), Locale('de',...

Hm, I'm also struggling with that. I can't get _handleDidChangeTabRoute()_ and _didChangeTabRoute()_ to get called. Need to dig deeper on how to get _routeData_ in such a way that those...

I tried this fantastic lib today and quickly ran into the issue with custom scalars. PR #555 allows users now to register a map which allows to parse/validate/resolve custom types....

Struggling with this too. Is there any fix for that?

Unfortunately there's still no feedback from the core team. I brought that topic up on slack twice but it did not lead anywhere (@hperl @aeneasr @kmherrmann). For the time being,...

@mat-sz I tried the basic-react example from your fork. One thing that I noticed is, that I loose all state in the components upon HMR. To demonstrate this I simply...

So, I gave it a shot in a demo electron app that uses [electron-vite](https://electron-vite.org/). Besides an issue with the export of `SQLiteAdapter` it works fine. I used `better-sqlite3` as the...