-
Notifications
You must be signed in to change notification settings - Fork 489
New issue
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
absolute-positioned problem? #290
Comments
All widgets inherit from ConstrainedControl has left: OptionalNumber = None, But set left/top is not work ; I test container in stack is ok , all other may not wok
is any code used wrong? |
Working example: import flet
from flet import Page, Stack, Text, colors
def main(page: Page):
page.title = "Text custom styles"
page.scroll = "adaptive"
page.add(Stack([Text("Size 10", size=10, left=300, top=100)], expand=True))
flet.app(target=main) |
I'm closing this issue in favor of #296 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can't set left/top for Stack ?
left: OptionalNumber = None,
top: OptionalNumber = None,
right: OptionalNumber = None,
bottom: OptionalNumber = None
how to used?
The text was updated successfully, but these errors were encountered: