Aleksandar

Results 28 comments of Aleksandar

For me this patch bellow fixed the problem. Patch fixes types for both `highlight.js` and for `highlight.js/lib/common`, but `lib/common` and `lib/core` should probably have it's own "types" value. ``` diff...

There are a couple of things that must happen when you set access token, look at [login method](https://github.com/apstanisic/directus-dart/blob/8c2c8fb2d4a976211090c16cc892c0802bd19f76/packages/directus_core/lib/src/modules/auth/auth_handler.dart#LL96C6-L96C6). It would leave library state in incorrect state Should be something like...

It shouldn't be hard, since only reason that there is a Flutter dependency is because package uses shared preferences. We already accept any compatible storage in constructor, so it's just...

We don't know where we can save data without Flutter. For that reason there are separate packages for hive: `hive` and `hive_flutter`. [See hive docs](https://docs.hivedb.dev/#/basics/hive_in_flutter). It's all about convenience. We...

There is now `directus_core` package that does not require Flutter

Someone else opened similar issue. Does `readOne` returns `List` or `Map`?

There was a change in the API, or at least I didn't read spec correctly, [see](https://docs.directus.io/reference/system/fields.html#retrieve-a-field). Currently API tries to fetch fields with ID, but it's using `:collection/:field` endpoint

Is the error occurring when you update/create your collection or when you update/create role? Are you providing converter? I this the problem is here: ```dart /// directus_response.dart /// Constructor that...

Can you check 0.9.1, it should fix it. Reopen if error still exists.

I'll check it out. I think they changed their license from MIT to GPLv3, so I'll see what can be done. Is REST API is the same?