-
Notifications
You must be signed in to change notification settings - Fork 493
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
Allow FloatingActionButton with content
only
#178
Comments
It's already there. |
But there is a bug that doesn't allow a button with |
Code sample: import flet
from flet import Column, FloatingActionButton, Page, Text
def main(page: Page):
page.add(
Column(
[
FloatingActionButton(
content=Text("I'm Big!", size=50), width=300, height=200
),
]
)
)
page.update()
flet.app(target=main) |
content
property to FloatingActionButtoncontent
only
FeodorFitsner
added a commit
that referenced
this issue
Aug 11, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Discussed in #176
Originally posted by nascin August 10, 2022
I need to change the size of the FloatingActionButton's text property, but I didn't find the text_size property. How can I change?
The text was updated successfully, but these errors were encountered: