Enhance button styling in breadcrumb navigation for improved usability

This commit is contained in:
Leon Bösche
2026-01-15 13:48:11 +01:00
parent 9614c0e950
commit 2aaf611edb

View File

@@ -1400,6 +1400,12 @@ class _FileExplorerState extends State<FileExplorer> {
child: Row(
children: state.breadcrumbs.map((breadcrumb) {
return TextButton(
style: TextButton.styleFrom(
padding: EdgeInsets.zero,
minimumSize: Size.zero,
tapTargetSize:
MaterialTapTargetSize.shrinkWrap,
),
onPressed: () {
context.read<FileBrowserBloc>().add(
NavigateToFolder(breadcrumb.path),