mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2026-01-31 04:25:02 -06:00
feat: Replaced old label form fields with full page search, removed badge from edit button in document details
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import 'dart:ui';
|
||||
import 'package:flutter/painting.dart';
|
||||
|
||||
import 'package:json_annotation/json_annotation.dart';
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ dependencies:
|
||||
equatable: ^2.0.5
|
||||
http: ^0.13.5
|
||||
json_annotation: ^4.7.0
|
||||
intl: ^0.17.0
|
||||
intl: any #^0.18.0
|
||||
dio: ^5.0.0
|
||||
collection: ^1.17.0
|
||||
jiffy: ^5.0.0
|
||||
|
||||
+2
-1
@@ -58,7 +58,8 @@ class _AnimatedTouchBubblePartState extends State<AnimatedTouchBubblePart>
|
||||
width: widget.dragging ? 0 : widget.size / 2,
|
||||
height: widget.dragging ? 0 : widget.size / 2,
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).accentColor.withOpacity(0.5),
|
||||
color:
|
||||
Theme.of(context).colorScheme.primary.withOpacity(0.5),
|
||||
borderRadius: widget.dragging
|
||||
? BorderRadius.circular(widget.size)
|
||||
: BorderRadius.circular(widget.size / 4)))),
|
||||
|
||||
@@ -78,7 +78,8 @@ class _MagnifierState extends State<Magnifier> {
|
||||
child: BackdropFilter(
|
||||
filter: ImageFilter.matrix(_matrix.storage),
|
||||
child: CustomPaint(
|
||||
painter: MagnifierPainter(color: Theme.of(context).accentColor),
|
||||
painter: MagnifierPainter(
|
||||
color: Theme.of(context).colorScheme.secondary),
|
||||
size: _magnifierSize,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user