This commit is contained in:
Leon Bösche
2026-01-27 02:01:22 +01:00
parent 2a4955b934
commit d73311e74c

View File

@@ -1603,6 +1603,20 @@ class _FileExplorerState extends State<FileExplorer>
Row(
children: [
IconButton(
style: ButtonStyle(
splashFactory: NoSplash.splashFactory,
overlayColor:
WidgetStateProperty.resolveWith<Color?>((
Set<WidgetState> states,
) {
if (states.contains(
WidgetState.pressed,
)) {
return Colors.transparent;
}
return null;
}),
),
icon: const Icon(
Icons.arrow_back,
color: AppTheme.primaryText,