Merge pull request #67 from CristiSandu/bugfix/unable-to-toggle-switch-programatically

Fix programatically toggle switch
This commit is contained in:
Javier Suárez 2024-09-13 13:10:13 +02:00 коммит произвёл GitHub
Родитель 2ab4ea99e4 7335f75607
Коммит 6e5b7aebff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -53,7 +53,7 @@ namespace AlohaKit.Controls
}
public static readonly BindableProperty IsOnProperty =
BindableProperty.Create(nameof(IsOn), typeof(bool), typeof(ToggleSwitch), false,
BindableProperty.Create(nameof(IsOn), typeof(bool), typeof(ToggleSwitch), false, defaultBindingMode: BindingMode.TwoWay,
propertyChanged: (bindableObject, oldValue, newValue) =>
{
if (newValue != null && bindableObject is ToggleSwitch toggleSwitch)