Hi,
After upgrading to 0.2x the clicked handler for fuse-modalview is no longer being called. I add it like this:
for (var i = 0; i < buttons.Length; i++) {
var tempButton = new Fuse.Controls.Button();
temp8.Children.Add(tempButton);
tempButton.Text = buttons[i] as string;
Fuse.Gestures.Clicked.AddHandler(tempButton, ButtonClickHandler);
}
And ButtonClickHandler looks like this:
void ButtonClickHandler (object sender, Fuse.Gestures.ClickedArgs args) {
But a debug_log in the start is not being called.
Here is the full project: