showOverlay method

void showOverlay()

Shows the search overlay.

Implementation

void showOverlay() {
  if (_isOverlayVisible) return;
  _isOverlayVisible = true;

  if (_cubit.state is SmartPaginationInitial && _config.searchOnEmpty) {
    _performSearch(_textController.text);
  }

  notifyListeners();
}