Use platform specific delete icon

This commit is contained in:
Neeraj Gupta 2023-02-22 16:27:14 +05:30
parent ec0a41a019
commit 9d2995ba19
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -382,8 +382,10 @@ class _FullScreenMemoryState extends State<FullScreenMemory> {
},
),
IconButton(
icon: const Icon(
Icons.delete_outline,
icon: Icon(
Platform.isAndroid
? Icons.delete_outline
: CupertinoIcons.delete,
color: Colors.white, //same for both themes
),
onPressed: () async {