源碼來源 🌐 Source code from github 🌐 https://github.com/LineIndent/flet_projects/tree/main/ft_product_ui
def card(color_1, color_2):
img = Container(
on_hover=lambda x: scaleUpImage(x),
scale=Scale(scale=1.6),
animate_scale=animation.Animation(800, "bounceOut"),
content=Image(
src=f"./burger.png",
width=250,
height=220,
),
)
return Column(
horizontal_alignment="center",
spacing=1,
controls=[img],
)