From 2302e3941e5cc552174e75ea7c123d83540f2ac9 Mon Sep 17 00:00:00 2001 From: Lucas Delanier Date: Fri, 4 Aug 2023 00:36:07 +0200 Subject: [PATCH] add icon --- Sources/justMUSIC/lib/screens/detail_post_screen.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Sources/justMUSIC/lib/screens/detail_post_screen.dart b/Sources/justMUSIC/lib/screens/detail_post_screen.dart index a99e540..59298f4 100644 --- a/Sources/justMUSIC/lib/screens/detail_post_screen.dart +++ b/Sources/justMUSIC/lib/screens/detail_post_screen.dart @@ -288,7 +288,12 @@ class _DetailPostScreenState extends State { ), SvgPicture.asset("assets/images/add.svg", semanticsLabel: 'Add playlist Logo'), - SvgPicture.asset("assets/images/save.svg", semanticsLabel: 'Save Logo'), + GestureDetector( + onTap: () { + MyApp.musicViewModel. + }, + child: SvgPicture.asset("assets/images/save.svg", + semanticsLabel: 'Save Logo')), SvgPicture.asset("assets/images/report.svg", semanticsLabel: 'Report Logo'), ], ),