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
Page.show_...()
Please Describe The Problem To Be Solved
f. e. i want to show drawer, but i don't want to define argument in Page.show_drawer() method. Then i must use this code:
Page.show_drawer()
page.drawer = ... page.show_drawer(page.drawer)
I want to use this code:
page.drawer = ... page.show_drawer()
(Optional): Suggest A Solution
@overload def show_drawer(self) -> None: ... @overload def show_drawer(self, drawer: NavigationDrawer) -> None: ... def show_drawer(self, drawer = None) -> None: if drawer: self.drawer = drawer self.drawer.open = True self.update()
The text was updated successfully, but these errors were encountered:
NavigationDestination
NavigationBarDestination
Would you care for PR? ;)
Sorry, something went wrong.
Already. I have opened this issue for it
What PR is that?
#3172
Successfully merging a pull request may close this issue.
Please Describe The Problem To Be Solved
f. e. i want to show drawer, but i don't want to define argument in
Page.show_drawer()
method. Then i must use this code:I want to use this code:
(Optional): Suggest A Solution
The text was updated successfully, but these errors were encountered: