Skip to content

Commit

Permalink
Enhance UX on updating apps
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin committed Feb 14, 2025
1 parent 426ede8 commit e1e057a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/lib/pages/apps/providers/add_app_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ class AddAppProvider extends ChangeNotifier {
}
setIsUploadingThumbnail(false);
}
checkValidity();
notifyListeners();
}

Expand All @@ -581,6 +582,7 @@ class AddAppProvider extends ChangeNotifier {
void removeThumbnail(int index) {
thumbnailUrls.removeAt(index);
thumbnailIds.removeAt(index);
checkValidity();
notifyListeners();
}

Expand Down
1 change: 1 addition & 0 deletions app/lib/pages/apps/widgets/show_app_options_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ class ShowAppOptionsSheet extends StatelessWidget {
title: const Text('Update App Details'),
leading: const Icon(Icons.edit),
onTap: () {
Navigator.pop(context);
routeToPage(context, UpdateAppPage(app: app));
},
),
Expand Down

0 comments on commit e1e057a

Please sign in to comment.