showFullImage method

dynamic showFullImage(
  1. File file,
  2. BuildContext context
)

Implementation

showFullImage(File file, BuildContext context) {
  Navigator.push(
    context,
    MaterialPageRoute(builder: (context) => FullImageView(imageFile: file)),
  );
}