ui: Add a shadow behind the delete icons

This commit is contained in:
2022-08-17 20:09:33 +02:00
parent 436bccf86c
commit 4d6c584841
3 changed files with 21 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
import 'dart:io';
import 'package:decorated_icon/decorated_icon.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:mime/mime.dart';
@@ -11,6 +12,16 @@ import 'package:moxxyv2/ui/widgets/chat/shared/video.dart';
import 'package:moxxyv2/ui/widgets/chat/thumbnail.dart';
import 'package:path/path.dart' as pathlib;
Widget _deleteIconWithShadow() {
return const Center(
child: DecoratedIcon(
Icons.delete,
size: 32,
shadows: [BoxShadow(blurRadius: 8)],
),
);
}
class SendFilesPage extends StatelessWidget {
const SendFilesPage({ Key? key }) : super(key: key);
@@ -45,12 +56,7 @@ class SendFilesPage extends StatelessWidget {
}
},
borderColor: selected ? Colors.blue : null,
child: selected ? const Center(
child: Icon(
Icons.delete,
size: 32,
),
) : null,
child: selected ? _deleteIconWithShadow() : null,
),
);
} else if (mime.startsWith('video/')) {
@@ -72,12 +78,7 @@ class SendFilesPage extends StatelessWidget {
}
},
borderColor: selected ? Colors.blue : null,
child: selected ? const Center(
child: Icon(
Icons.delete,
size: 32,
),
) : null,
child: selected ? _deleteIconWithShadow(): null,
),
);
} else {