Xuan Nguyen
Xuan Nguyen
I would try to give my proposal on how it could be implemented. I think this should work similar to how we draw a **Rectangle** shape. 1. Select shape **Rectangle**...
Maybe I over complicated this shape when relating it with the grid system. An easier way is just having a normal table shape. By knowing the drag area, we can...
> It seems there is "Jazzer Pro" now: https://www.code-intelligence.com/introducing-jazzer-pro The link is broken now. I couldn't find any official page about "Jazzer Pro" anymore.
Hi, is there a plan to replace Jazzer Pro completely with something OSI-approved license?
It seems, there are breaking changes in the method signature in Flutter.
This bug is due to a breaking change in Flutter here: https://github.com/flutter/flutter/pull/88122/files#diff-8abafe20889034302704127c53ab6f51d109fca46c91fecc4ed3fde978cc07a7R1329 I think Flutter should make it backward compatible. I can change to use the new method signature, but...
Created issue https://github.com/flutter/flutter/issues/96136
@ybelMekk could you have a look? I am not sure how to inject the config to these places and where/how to write tests for this case. If you could give...
I tried to change like this https://github.com/xuanswe/mock-oauth2-server/commit/1b74252176230ad105e2e8f2130a6e2bbb7f1909 ``` fun SignedJWT.expiresIn(systemTime: Instant? = null): Int = Duration.between(systemTime ?: Instant.now(), this.jwtClaimsSet.expirationTime.toInstant()).seconds.toInt() ``` And provide the systemTime for all implementation of `GrantHandler`. These...
Yes, I like your idea, which is better than mine. The value should be derived from this.jwtClaimsSet itself. Nice!