You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can I change the CustomDoneButtonTitle depending on whether I have selected an image or not? With AutoDisableDoneButton, I can only set the button to be disabled, but it will still be displayed..
I tried:
m_CurrentPicker = new GMImagePickerController(...);
Hi! Setting the CustomDoneButtonTitle does not update the button at real time, it only initializes the buttons once during ViewDidLoad. So that CustomDoneButtonTitle is not data bound to the actual button anymore. It's probably doable by wiring some stuff up in the property setter but it's quite a refactor to do so.
Version: 2.5.1
Xamarin.Forms Version: 5.0.0.2012
Can I change the CustomDoneButtonTitle depending on whether I have selected an image or not? With AutoDisableDoneButton, I can only set the button to be disabled, but it will still be displayed..
I tried:
m_CurrentPicker = new GMImagePickerController(...);
m_CurrentPicker.AssetSelected += CurrentPickerOnAssetSelected;
m_CurrentPicker.AssetDeselected += CurrentPickerOnAssetSelected;
The text was updated successfully, but these errors were encountered: