Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@
HorizontalOptions="Center"
AutomationId="HeaderFooterViewButton"
WidthRequest="400"/>
<Button Text="Selection FeaturePage"
Clicked="OnSelectionButtonClicked"
HorizontalOptions="Center"
AutomationId="SelectionPageButton"
WidthRequest="400"/>
</VerticalStackLayout>
</ContentPage>
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,10 @@ private async void OnHeaderFooterViewButtonClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new CollectionViewHeaderPage());
}

private async void OnSelectionButtonClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new CollectionViewSelectionPage());
}
}
}
Loading
Loading