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 issue. For now I made some changes to make it work (this is just a temp hot fix for me).
On materialize.js (materialize-v0.100.2 not the min one):
1) On line 1786 there is a setTimeout (with comment "Add click close handler to document") that has a wait value of 0, change it to 100.
2) On line 6558 there is a binding to the click outside the datepicker element. (with comment "Bind the document events".) Put all this binding inside a setTimeout with a wait time of 500 ms.
Fix 1 is for the selects, the second one is for the datepicker.