private void GoToNextPage()
    {
        bool success = BookComponent.GoToNextPage(true, () => {
            userInteractionEnabled = true;
            StartPageAnimation();
        });

        userInteractionEnabled = !success;
    }
 public void GoToNextPage()
 {
     BookComponent.GoToNextPage(true);
 }