Theme Page Transitions #806
AL-THE-BOT-FATHER
started this conversation in
General
Replies: 1 comment
-
Created a new issue: #808 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
First, thank you for Flet. I am thinking about making it my "go to" for making GUIs.
I have a quick question about Themes and Page Transitions. I understand the Flet supports 4 transition types:
FADE_UPWARDS, OPEN_UPWARDS, ZOOM, and CUPERTINO.
My question is: is there a way to have page transitions without the animations? I want no animation between the transition between views.
I tried:
theme = Theme()
theme.page_transitions.android = None
theme.page_transitions.ios = None
theme.page_transitions.macos = None
theme.page_transitions.linux = None
theme.page_transitions.windows = None
page.theme = theme
page.update()
Any help would be greatly appreciated!
-Al
Beta Was this translation helpful? Give feedback.
All reactions