Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycProcessPage.xaml.cs
1using Microsoft.Maui.Controls;
5
7{
8
9 public partial class KycProcessPage : BaseContentPage
10 {
12 {
13 this.InitializeComponent();
14
15 this.ContentPageModel = Vm;
16
17 Vm.ScrollToTop += async (_, _) =>
18 {
19 await this.Dispatcher.DispatchAsync(() =>
20 {
21#warning Can still crash if the ItemSource is empty, but as of the moment it never is
22 if (this.FormCollectionView is not null && this.FormCollectionView.ItemsSource != null)
23 {
24 this.FormCollectionView.ScrollTo(0, position: ScrollToPosition.Start, animate: false);
25 }
26 });
27 };
28 }
29 }
30}
A base class for all pages, intended for custom navigation with explicit life-cycle events.
Orchestrates the interactive KYC flow, covering navigation, validation, summary projection,...
Definition: ImplTypes.g.cs:58