We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
flet build
assets
pubspec.yaml
[tool.flet.flutter.pubspec.flutter] assets = []
flutter config --help
flet-*
flet
The text was updated successfully, but these errors were encountered:
snackbar is also not workiung in pre release
Sorry, something went wrong.
Configure JDK path for Flutter
03889f0
Close #4727
48dca6f
Snackbar example on the website is outdated.
The working example:
import flet as ft class Data: def __init__(self) -> None: self.counter = 0 d = Data() def main(page): def on_click(e): snack_bar = ft.SnackBar(ft.Text(f"Hello {d.counter}")) page.open(snack_bar) d.counter += 1 page.update() page.add(ft.ElevatedButton("Open SnackBar", on_click=on_click)) ft.app(main)
FeodorFitsner
Successfully merging a pull request may close this issue.
assets
section inpubspec.yaml
. This should work:flutter config --help
.flutter config --help
.flet-*
packages should have no version constraint forflet
dependency.The text was updated successfully, but these errors were encountered: