Results 7 comments of frankyvij

I am actually experiencing lag on my android device (Samsung Note 9), even in release mode with 3 avatars glowing at the same time. I am using this in ListTile...

Hi @jakesq , may I please ask if you managed to fix it?

@kmcgill88 : Official plugin is not well developed because it causes severe performance impact even if you have only one animated banner in the UI. Refer to this issue reported:...

Hello @xiprox , the above commit does not seem to work. There are a lot of missing arguments, and extra arguments error after using your change. Below is a small...

It's 2020 and flutter still expects TextField and TextFormField to be plain text. Haha. When should we expect an update on this? Or if its not on the roadmap, least...

Is there a solution for this? Adding evt.preventDefault() after line 57 does not work.

I actually made it work by wrapping changing handlePaste function to the following: ``` handlePaste(evt) { evt.preventDefault(); if (evt.clipboardData && evt.clipboardData.items && evt.clipboardData.items.length) { this.readFiles(evt.clipboardData.items, dataUrl => { setTimeout(() =>...