Skip to content

Commit 0de51dd

Browse files
committed
⚡️ Hide the loading widget in the preview until an actual saving process has been invoked
1 parent 35cf270 commit 0de51dd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ that can be found in the LICENSE file. -->
1010

1111
- Add Vietnamese language text delegate. (#166).
1212

13+
### Improvements
14+
15+
- Hide the loading widget in the preview until an actual saving process has been invoked.
16+
1317
## 3.7.0
1418

1519
### New features

lib/src/states/camera_picker_viewer_state.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ class CameraPickerViewerState extends State<CameraPickerViewer> {
370370
children: <Widget>[
371371
buildPreview(context),
372372
buildForeground(context),
373-
buildLoading(context),
373+
if (isSavingEntity) buildLoading(context),
374374
],
375375
),
376376
);

0 commit comments

Comments
 (0)