public CurrentStep(View element, string text, CoachMarksSettings settings) { Text = text; Element = element; Settings = settings; ElementParent = Element.Parent ?? throw new InvalidOperationException(); }
public CoachMarks(CoachMarksSettings settings) { Settings = settings; Overlay = new CoachMarksOverlay(); // Buttons Next = new NextButton(NextButtonTapped); Skip = new SkipButton(SkipButtonTapped); Back = new BackButton(BackButtonTapped); // Buttons stacks TopButtons = new TopButtonContainer(); BottomButtons = new BottomButtonContainer(); }