Royal Flow Manager is a infrastructure for managing your mobile app flows.
| Metric | Value |
|---|---|
| Dependencies | 0 |
| Packaging | NuGet PCL |
In Package Manager Console run
PM> Install-Package RoyalFlowManager - Flow - .
- FlowState - .
- FlowRouter - .
- State - .
- FlowManager - .
Here is a short example of Royal Flow Manager in action. Let's create an app for registering users.
First, we need to define the FlowState. Lets name it SignUpFlowState:
// SignUpFlowState public class SignUpFlowState { // Will appear in the page #1 public string FirstName { get; set; } public string LastName { get; set; } public DateTime BirthDate { get; set; } // Will appear in the page #2 public string AddressLine1 { get; set; } public string AddressLine2 { get; set; } public string City { get; set; } public string State { get; set; } public string Country { get; set; } // Will appear in the page #3 public string Username { get; set; } public string Password { get; set; } }