emptyIndicator method

Widget emptyIndicator(
  1. BuildContext context
)

Indicator when no assets were found from the current path. 当前目录下无资源的显示

Implementation

Widget emptyIndicator(BuildContext context) {
  return ScaleText(
    textDelegate.emptyList,
    maxScaleFactor: 1.5,
    semanticsLabel: semanticsTextDelegate.emptyList,
  );
}