Skip to content

Conversation

@ndonkoHenri
Copy link
Contributor

@ndonkoHenri ndonkoHenri commented Feb 11, 2025

Resolves #4855

Test Code

import flet as ft


def main(page: ft.Page):
    page.theme_mode = ft.ThemeMode.LIGHT
    page.add(
        ft.Card(
            color=ft.Colors.RED,
            content=ft.Column(
                controls=[
                    ft.ListTile(
                        title=ft.Text("Hello"),
                    ),
                ],
            ),
        )
    )


ft.app(main)

Summary by Sourcery

Bug Fixes:

  • Fix the visibility of ListTile's bgcolor when the parent has a color.

@FeodorFitsner FeodorFitsner merged commit 5d65996 into main Feb 19, 2025
1 of 3 checks passed
@FeodorFitsner FeodorFitsner deleted the ndonkoHenri/fix-list-tile-color branch February 19, 2025 00:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Same code shows different appearance in Flet APP/Web/PC local.

3 participants