Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. void choiceAction(String choice) {
  2. if (choice == Tabs.Settings) {
  3. print('Settings');
  4. }
  5. else if (choice == Tabs.Tutorial) {
  6. Navigator.push(
  7. context,
  8. MaterialPageRoute(
  9. builder: (context) => OnBoarding()),
  10. );
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement