Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion packages/flet/lib/src/controls/container.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ContainerControl extends StatelessWidget with FletStoreMixin {
Widget? container;

var onAnimationEnd = control.getBool("on_animation_end", false)!
? () => control.triggerEvent("animation_end" "container")
? () => control.triggerEvent("animation_end", "container")
: null;
if ((onClick || url != null || onLongPress || onHover || onTapDown) &&
ink &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import flet as ft
from names import NAMES

import flet as ft


def printer(e):
print("Yellow!")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,13 @@ def display(self, grid_item):
weight=ft.FontWeight.W_500,
),
ft.IconButton(
content=ft.Image(
icon=ft.Image(
src="github-mark.svg",
width=24,
height=24,
color=ft.Colors.ON_SURFACE_VARIANT,
),
url=f"https://github.com/flet-dev/examples/blob/main/python/apps/controls-gallery/examples/{example.file_name}",
url_target=ft.UrlTarget.BLANK,
url=f"https://github.com/flet-dev/examples/blob/main/python/apps/controls_gallery/examples/{example.file_name}",
),
],
),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import flet as ft
from components.controls_grid import ControlsGrid
from components.examples_view import ExamplesView
from components.left_navigation_menu import LeftNavigationMenu

import flet as ft


class GalleryView(ft.Row):
def __init__(self, gallery):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import flet as ft
from components.properties_table import PropertiesList

import flet as ft

name = "Text with variable properties"


Expand Down
Loading
Loading