Replies: 1 comment
-
I found the problem. |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
hello.
I am installing bullseye OS on Raspberry Pi CM4 and coding a flet app.
OS info.
Release date: May 3rd 2023
System: 64-bit
Kernel version: 6.1
Debian version: 11 (bullseye)
I set Korean language settings during installation, and Korean language is displayed well on the OS.
The problem is that when I run the flet app, the English language is displayed fine, but the Korean language is not displayed properly and is displayed as a square box.
What is unusual is that not all letters are broken, but the Korean language in the title is displayed normally.
The flet version is 0.11.0, but the same thing happens if you install another lower version - for example 0.7.1.
How can I display Korean properly in all controls?
Below, I attach the modified source code and execution photo of the clickable-container.py example.
`import flet as ft
def main(page: ft.Page):
page.title = "콘테이너 Containers - clickable and not"
page.vertical_alignment = ft.MainAxisAlignment.CENTER
page.horizontal_alignment = ft.CrossAxisAlignment.CENTER
ft.app(target=main)
`
Beta Was this translation helpful? Give feedback.
All reactions