Ming Jiang

Results 14 comments of Ming Jiang

Strongly +1 for adding to Homebrew!

It looks like it works when I change from `cssLayer: true` to `cssLayer: { name: "primevue" }`

I think the key question I'm asking is about consistency between the public documentation and the actual solution. Hope this can be fixed soon in the coming RC1 release.

Here is what I found: 1. When I set `cssLayer: true` or `cssLayer: { name: "primeui" }`, the layer's name defaults to "primeui" instead of "primevue" as documented, but there...

Here is what I found in the code: ```typescript if (cssLayer) { var order = themes.SharedUtils.object.getItemValue(cssLayer.order || 'primeui', params); return "@layer ".concat(order); } ``` Maybe the solution is not to...

Building still complains about `error: cannot find symbol` for `io.flutter.plugin.common.PluginRegistry.Registrar` in `CardEntryModule.java`, `GooglePayModule.java` and `SquareInAppPaymentsFlutterPlugin.java`.

I think the fix is simply removing unused private constructors for those three java files. Can you please update those files?

Doesn't work. Building still complains about `error: cannot find symbol` for `io.flutter.plugin.common.PluginRegistry.Registrar`.

Two reasons I would like that feature: 1. I am trying to refactor my code from using `FutureBuilder` to the command pattern, where instead of listening to the command, I...