import 'package:flutter_riverpod/flutter_riverpod.dart'; /// Whether to use a mock continuous viewer (ListView) instead of a real PDF viewer. /// Tests will override this to true. final useMockViewerProvider = Provider((ref) => true); /// Global visibility toggle for signature overlays (placed items). Kept simple for tests. final signatureVisibilityProvider = StateProvider((ref) => true); /// Whether resizing keeps the current aspect ratio for the active overlay final aspectLockedProvider = StateProvider((ref) => false);