ziofat
ziofat
Well this might be related to #10 , which only appears on android FAB back then.
I will try. I am more familiar with web so maybe this time I can find what is the real cause of this issue. :)
`deblur` seems added recently and not yet included in MDI. Please consider open an issue in https://github.com/Templarian/MaterialDesign
You can get icon list in https://github.com/ziofat/material_design_icons_flutter/blob/master/lib/icon_map.dart, though it is not satisfied to `Map` but I believe it is really easy to transform.
I will look into this soon. A little busy recently.
I took a quick look and I do notice that `MdiIcons` have a bit offset down compare to `Icons` on my Pixel phone. But this does not appear on iPhone....
hex can be easy. What about other format? I did solved my problem by using regex and I am thinking about a universal validator for all colour format.
I don't think this situation only applies to `devDependencies` but also `peerDependencies` and even `dependencies`. Consider the following scenario: I have three packages, `pkg-core`, `pkg-plugin` and `pkg-test`. `pkg-core` has all...
You can eliminate the error with this, but I don't think it is a correct solution. In runtime the `item` is not an `ItemDataType`. As you can see in my...
Maybe generics? ```tsx interface MyDataItem { quality: number; } { return {label} {item.quality} ; }} /> ``` And I suppose it is possible to infer the generics type from `data`...