Skip to content

Instantly share code, notes, and snippets.

@dimsuz
Created December 29, 2018 22:47
Show Gist options
  • Save dimsuz/dc94a6bcd24e1c802d627cd3bd934385 to your computer and use it in GitHub Desktop.
Save dimsuz/dc94a6bcd24e1c802d627cd3bd934385 to your computer and use it in GitHub Desktop.
TBI Auth Flow
TBI Auth Flow
Splash
timeout -> FirstScreen
back_pressed -> Exit
FirstScreen
is_first_launch -> Onboarding
is_logged_in -> PinCodeValidation
is_logged_out -> Authentication
Onboarding
back_pressed -> Exit
PinCodeValidation
Authentication
Exit
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment