You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the opened issues and there are no duplicates
Describe the bug
There is text in my bottom sheet but there are yellow lines under the text
Code sample
Code
importfletasftdefmain(page: ft.Page):
# Create bottom sheet (with content directly defined inside it)bottom_sheet=ft.CupertinoBottomSheet(
content=ft.Container(
content=ft.Column(
controls=[
# Title: Centered at the topft.Text(
"About us",
size=24,
weight=ft.FontWeight.BOLD,
text_align=ft.TextAlign.CENTER,
font_family="Quicksand", # Ensure font is specified
),
# Descriptive textft.Text(
"Welcome to our application! We aim to provide the best services and solutions ""to meet your needs. Our team is dedicated to ensuring customer satisfaction and ""delivering exceptional results. Here's what we offer:\n\n""- High-quality products\n""- Reliable customer support\n""- Continuous innovation\n""- A commitment to excellence\n\n""Thank you for choosing us. We look forward to serving you!",
size=16,
text_align=ft.TextAlign.JUSTIFY,
font_family="Quicksand", # Ensure font is specified
),
],
spacing=10, # Space between the title and the paragraph
),
padding=20,
bgcolor=ft.colors.LIGHT_BLUE_50,
border_radius=10,
width=600,
alignment=ft.alignment.top_center, # Align the container content at the top center
),
padding=ft.Padding(0, 0, 0, 250), # Add padding around the action sheet contentwidth=500, # Keep the desired widthheight=650,
)
# Add the bottom sheet to the page (this ensures the control is in the page's control tree)page.add(bottom_sheet)
# Open the bottom sheet after it's added to the pagepage.open(bottom_sheet)
ft.app(target=main)
To reproduce
Just run the program and the bottom sheet will be displayed
Expected behavior
There will be yellow underlines under the text
Screenshots / Videos
Captures
Operating System
Windows
Operating system details
Version 23H2 (OS build 22631.4602)
Flet version
flet == 0.25.2
Regression
No, it isn't
Suggestions
No response
Logs
Logs
[Paste your logs here]
Additional details
No response
The text was updated successfully, but these errors were encountered:
Duplicate Check
Describe the bug
There is text in my bottom sheet but there are yellow lines under the text
Code sample
Code
To reproduce
Just run the program and the bottom sheet will be displayed
Expected behavior
There will be yellow underlines under the text
Screenshots / Videos
Captures
Operating System
Windows
Operating system details
Version 23H2 (OS build 22631.4602)
Flet version
flet == 0.25.2
Regression
No, it isn't
Suggestions
No response
Logs
Logs
[Paste your logs here]
Additional details
No response
The text was updated successfully, but these errors were encountered: