mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-11 02:08:03 -06:00
fix: Fixed saved views bug, formatted files, minor changes
This commit is contained in:
@@ -22,7 +22,8 @@ class _DocumentViewState extends State<DocumentView> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isInitialized = _controller != null && _currentPage != null && _totalPages != null;
|
||||
final isInitialized =
|
||||
_controller != null && _currentPage != null && _totalPages != null;
|
||||
final canGoToNextPage = isInitialized && _currentPage! + 1 < _totalPages!;
|
||||
final canGoToPreviousPage = isInitialized && _currentPage! > 0;
|
||||
return Scaffold(
|
||||
|
||||
Reference in New Issue
Block a user