preload method

bool preload()

preloads the tab so other navigation actions can be done before the tab is initialized

Implementation

bool preload() {
  if (_load) return false;
  setState(() {
    _load = true;
  });
  return true;
}