Status Update
Comments
se...@google.com <se...@google.com> #2
This is probably happening because there are multiple instances of DataStore active. You should consider managing the DataStore as a singleton. See the attached bug for more info.
da...@well.co <da...@well.co> #3
Sorry think you are right. This does fix the ADA. BTW to get disabled working you have to do 3 different things
See enabled code. You need enabled on the anchor(to make announcing correctly), enabled on outlineTextfield(to make gray), and on click modifier to make sure you cant click.
ma...@google.com <ma...@google.com> #4
Setting Modifier.clickable
on a text field has no effect and is redundant, so you can remove that line. Modifier.menuAnchor
already handles the click logic. Meanwhile, it is intended for the text field and menu to have their enabled state be independently controlled, since they handle different parts of the logic of a broader combined component.
I'll be closing this bug as a duplicate of the other ticket, since the enabled functionality has been provided by menuAnchor
.
da...@well.co <da...@well.co> #5
I see that now. Thanks!
Description
ExposedDropDownMenuBox still does not allow to disable https://issuetracker.google.com/issues/308840226
I would expect enabled to be added as a param. See linked issue