feat: bump version number, temporarily disable in-app viewer

This commit is contained in:
Anton Stubenbord
2023-05-12 00:42:31 +02:00
parent 96c4b37f5f
commit 0231f28f3f
2 changed files with 3 additions and 2 deletions

View File

@@ -304,10 +304,11 @@ class _DocumentDetailsPageState extends State<DocumentDetailsPage> {
document: state.document,
enabled: isConnected,
),
//TODO: Enable again, need new pdf viewer package...
IconButton(
tooltip: S.of(context)!.previewTooltip,
icon: const Icon(Icons.visibility),
onPressed: isConnected ? () => _onOpen(state.document) : null,
onPressed: (isConnected && false) ? () => _onOpen(state.document) : null,
).paddedOnly(right: 4.0),
IconButton(
tooltip: S.of(context)!.openInSystemViewer,