File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Core/src/Handlers/Button Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,16 @@ protected override Button CreateNativeView()
15
15
16
16
protected override void ConnectHandler ( Button nativeView )
17
17
{
18
- nativeView . Released += OnButtonClicked ;
19
- nativeView . Clicked += OnButtonReleased ;
18
+ nativeView . Released += OnButtonReleased ;
19
+ nativeView . Clicked += OnButtonClicked ;
20
20
nativeView . Pressed += OnButtonPressed ;
21
21
base . ConnectHandler ( nativeView ) ;
22
22
}
23
23
24
24
protected override void DisconnectHandler ( Button nativeView )
25
25
{
26
- nativeView . Released -= OnButtonClicked ;
27
- nativeView . Clicked -= OnButtonReleased ;
26
+ nativeView . Released -= OnButtonReleased ;
27
+ nativeView . Clicked -= OnButtonClicked ;
28
28
nativeView . Pressed -= OnButtonPressed ;
29
29
base . DisconnectHandler ( nativeView ) ;
30
30
}
You can’t perform that action at this time.
0 commit comments