We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37cfb49 commit a3d65ddCopy full SHA for a3d65dd
lib/src/delegates/asset_picker_builder_delegate.dart
@@ -1705,7 +1705,7 @@ class DefaultAssetPickerBuilderDelegate
1705
child: ScaleText(
1706
isPermissionLimited && p.isAll
1707
? textDelegate.accessiblePathName
1708
- : p.name,
+ : pathNameBuilder?.call(p) ?? p.name,
1709
style: const TextStyle(
1710
fontSize: 17,
1711
fontWeight: FontWeight.normal,
@@ -1715,7 +1715,7 @@ class DefaultAssetPickerBuilderDelegate
1715
maxScaleFactor: 1.2,
1716
semanticsLabel: isPermissionLimited && p.isAll
1717
? semanticsTextDelegate.accessiblePathName
1718
1719
),
1720
1721
w!,
0 commit comments