We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can you tell me how i move my real screen when i click on icon..
The text was updated successfully, but these errors were encountered:
Create List for navigation pages and warp to the body with the index.
Example :
List Pages = [ HomePage(), History(), Profile(), ];
var tabindex = _SelectedTab.values.indexOf(_selectedTab);
body : Pages[ tabindex ]
Sorry, something went wrong.
Full App Controller
int currentIndex = 0; void onItemTapped(int index) { currentIndex = index; update(); } List screen = [ HomePage(), History(), Profile(), ];
Full App Screen
body: controller.screen.elementAt(controller.currentIndex),
No branches or pull requests
can you tell me how i move my real screen when i click on icon..
The text was updated successfully, but these errors were encountered: