Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdown and ShaderMask controls #160

Merged
merged 14 commits into from
Aug 6, 2022
Merged

Markdown and ShaderMask controls #160

merged 14 commits into from
Aug 6, 2022

Conversation

FeodorFitsner
Copy link
Contributor

@FeodorFitsner FeodorFitsner commented Aug 6, 2022

What's new

import flet
from flet import Container, Page

def main(page: Page):
    def on_hover(e):
        e.control.bgcolor = "blue" if e.data == "true" else "red"
        e.control.update()

    page.add(
        Container(width=100, height=100, bgcolor="red", ink=False, on_hover=on_hover)
    )

flet.app(target=main)

Fixed bugs

@FeodorFitsner FeodorFitsner changed the title Markdown control Markdown and ShaderMask controls Aug 6, 2022
@FeodorFitsner FeodorFitsner merged commit f4967b7 into main Aug 6, 2022
@FeodorFitsner FeodorFitsner deleted the s2-markdown branch August 6, 2022 21:02
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.

1 participant