Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Messages.cs
3
4namespace NeuroAccessMaui
5{
10 {
14 public RegistrationStep Step { get; } = Step;
15 }
16
21 public class OnboardingLinkProcessingMessage(bool isProcessing)
22 {
26 public bool IsProcessing { get; } = isProcessing;
27 }
28
32 public class KeyboardSizeMessage(float KeyboardSize)
33 {
37 public float KeyboardSize { get; } = KeyboardSize;
38 }
39}
RegistrationStep
The different steps of a TAG Profile registration journey.
class OnboardingLinkProcessingMessage(bool isProcessing)
Signals that an onboarding link is being processed (start/stop). Used by GetStarted view to toggle a ...
Definition: Messages.cs:21
class KeyboardSizeMessage(float KeyboardSize)
Keyboard size change message
Definition: Messages.cs:32
class RegistrationPageMessage(RegistrationStep Step)
RegistrationPage view change message
Definition: Messages.cs:9