Bind MvxBindableTableViewCell's Accessory to boolean
问题 I'm stuck on how to bind the MvxBindableTableViewCell's accessory to a boolean. I have the table's ItemsSource bound to a list in my ViewModel, showing a nice list of clickable items. However I want the cell's accessory (UITableViewCellAccessory.Checkmark) to show only when this object is flagged. By flagged I mean a boolean in the model is set to true. Does anyone know how to bind the cell's accessory? EDIT: I can show the Accessory depending on the model's boolean, but it's not bound.