Skip to content
Discussion options

You must be logged in to vote

Pre-release version of Flet (pip install flet --upgrade --pre) introduces Container.blur property. Here is an example:

import flet as ft

def main(page: ft.Page):

    page.add(
        ft.Stack(
            [
                ft.Container(
                    content=ft.Text("Hello"),
                    image_src="https://picsum.photos/100/100",
                    width=100,
                    height=100,
                ),
                ft.Container(
                    width=50,
                    height=50,
                    blur=10,
                    bgcolor="#44CCCC00",
                ),
                ft.Container(
                    width=50,
                    height=50

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@GrootCHENN
Comment options

Answer selected by GrootCHENN
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
help wanted Extra attention is needed
3 participants