Sergio Molchanovsky

Results 86 comments of Sergio Molchanovsky

@sschmid Hi! Are there any tutorials about your JobSystem?

Am I right to do like this? ``` public class PositionComponent : IComponent { public Vector3 value; } public class SimpleMoveJobSystem : JobSystem { public SimpleMoveJobSystem(GameContext context, int threads) :...

I've received an answer from some Korean YT channel https://www.youtube.com/watch?v=RIqfOm0hp6Q ```dart EventTransformer debounceSequential(Duration duration) { return (events, mapper) { return sequential().call(events.debounce(duration), mapper); }; } ``` Should be in the manual,...

@vishalJoshiBrainvire I recommend to get rid of GetX. Overrated package with poor quality code (mostly stolen from other packages), performance troubles (some indepentent tests show its "mini-streams" are 3.5x slower...

> but it was leading me to AnimatedContainer, and I kept thinking, I'm not using any AnimatedContainers, then I discovered that every Neumorphic is an AnimatedContainer, which seems odd if...

> Hi, this plugin has been low maintained lately, despite its potential and community use. > > What are the solutions that you purpose for performance improvements? As @m-j-g noticed,...

The same question. Seems like you forgot the fontFamily parameter. We use non-Google fonts, so we can't use google_fonts utility.

Hey @fonkamloic, I found a way. You can use `materialTheme` parameter with a standard Flutter Material theme, where you can define your `fontFamily`. When grab this parameter with `Theme.of(context)` to...

Same here. We found in Crashlytics that many users experiencing this bug ![image](https://user-images.githubusercontent.com/12999702/171057380-e147f7d1-f0fe-4d13-b050-367886ec055b.png) -- We also found this bug, it looks very similar. I think it might be related: ![image](https://user-images.githubusercontent.com/12999702/171059108-ea9f1749-1499-43a5-8c49-7f31eeab30ec.png)

He seems to have found a solution: https://github.com/flutter/flutter/issues/96901#issuecomment-1053114107 Why don't you implement it?