file_manager icon indicating copy to clipboard operation
file_manager copied to clipboard

Custom errorPage

Open simonpham opened this issue 3 years ago • 0 comments

Support passing error page instead of returning below default red screen.

Container _errorPage(String error) {
    return Container(
      color: Colors.red,
      child: Center(
        child: Text("Error: $error"),
      ),
    );
  }

simonpham avatar Oct 23 '22 08:10 simonpham