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
I use following code the select second tab from TabBar: navigationDrawerController?.rootViewController.tabsController?.tabBar.select(at: 1)
navigationDrawerController?.rootViewController.tabsController?.tabBar.select(at: 1)
As you can see, the result is incomplete: the tab is selected, but associated view is not shown and previous view is still visible.
Regards, Gogu.
The text was updated successfully, but these errors were encountered:
You can write this now with the latest Material 2.9.* version.
tabsController?.tabBar.select(at: 1)
and the select feature has not yet been implemented. I will make that update most likely tomorrow. Thank you!
Sorry, something went wrong.
You can now find a fix for this in Material 2.10.1.
Use:
tabsController?.select(at: 1)
Thank you!
daniel-jonathan
No branches or pull requests
I use following code the select second tab from TabBar:
navigationDrawerController?.rootViewController.tabsController?.tabBar.select(at: 1)
As you can see, the result is incomplete: the tab is selected, but associated view is not shown and previous view is still visible.
Regards,
Gogu.
The text was updated successfully, but these errors were encountered: