How to change checkbox label font size? #1878
-
QuestionHow to change checkbox label font size? Code sampleNo response Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
ndonkoHenri
Sep 28, 2023
Replies: 1 comment 1 reply
-
This is not directly possible from the Checkbox control. But you could something like this: import flet as ft
def main(page):
page.add(
ft.Row(
tight=True,
controls=[
ft.Checkbox(),
ft.Text("Text-made label", size=14)
]
)
)
ft.app(target=main) What do you think? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
barbo1942
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not directly possible from the Checkbox control. But you could something like this:
What do you think?