Skip to content

Instantly share code, notes, and snippets.

@tirth-aubergine
Last active December 6, 2019 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tirth-aubergine/fb7bee5fc96f3fddd25ad5ab2b8fc605 to your computer and use it in GitHub Desktop.
Save tirth-aubergine/fb7bee5fc96f3fddd25ad5ab2b8fc605 to your computer and use it in GitHub Desktop.
ResultScreen - View
FlatButton(
onPressed: () async {
String downloadPath =
await getApplicationDocumentsDirectoryPath();
if (File('$downloadPath/$name.pdf').existsSync()) {
Navigator.pushNamed(context, '/viewer',
arguments: {'view': '$downloadPath/$name.pdf'});
} else {
Scaffold.of(context).showSnackBar(
SnackBar(
content: Text('$name.pdf File Not Found'),
action: SnackBarAction(
label: 'Download',
onPressed: () {
pdfGenerator(name);
Scaffold.of(context).showSnackBar(
SnackBar(
content: Text('$name.pdf downloaded'),
action: SnackBarAction(
label: 'View',
onPressed: () async {
String downloadPath =
await getApplicationDocumentsDirectoryPath();
Navigator.pushNamed(
context, '/viewer', arguments: {
'view': '$downloadPath/$name.pdf'
});
},
),
),
);
},
),
),
);
}
},
child: Icon(Icons.open_in_new),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment