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

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