defaultNoResultsFound static method

Widget defaultNoResultsFound(
  1. dynamic context
)

Creates a 'No results found' tile.

No results found Preview

Implementation

static Widget defaultNoResultsFound(context) {
  return ListTile(
    title: DefaultTextStyle(
      style: TextStyle(fontWeight: FontWeight.normal),
      child: Text('No results found'),
    ),
  );
}