chore(example_full): remove dead code

This commit is contained in:
ksenia312
2024-02-06 23:26:17 +01:00
parent 06ca99c7f9
commit 2541aa57d2
@@ -153,28 +153,6 @@ class _CommunicationViewState extends State<CommunicationView> {
), ),
), ),
); );
if (FilesSaver.isImage(e.extension)) {
return Image.file(
File(e.path!),
fit: BoxFit.cover,
);
} else {
return Container(
decoration: BoxDecoration(
border: Border.all(color: kBlueColor),
borderRadius: BorderRadius.circular(16)),
padding: const EdgeInsets.all(8.0),
alignment: Alignment.center,
child: Text(
e.name,
style: const TextStyle(
fontSize: 12,
fontWeight: FontWeight.bold,
color: kBlueColor,
),
),
);
}
}, },
), ),
], ],