After the latest Chrome Update 73, the date pickers, time pickers and dropdowns for Materialize CSS 0.100.2 isn\'t working anymore, it flickers when you click on it and then dis
I had the same problem. Although I am using angular2-materialize
, I believe this should work for people using materialize
directly.
The solution that worked for me was to wrap the materialize select
input with a div
that has a click
listener that simply calls event.stopPropagation()
:
I hope this helps some people.