A macOS desktop app to browse installed applications and uninstall them (including leftover support files). Built with Flutter.
- Application list — View all apps in
/Applicationswith name, version, size, and icon - Search & filter — Find apps quickly
- Summary cards — Total app count, disk usage, system junk placeholder, unused apps placeholder
- Bulk selection — Select multiple apps for batch uninstall
- Clean uninstall — Removes the
.appbundle and common support/cache/preference files under your home directory
- Flutter (macOS)
- macOS (app reads
/Applicationsand usesiconutil,plutil,du,rm)
# Clone and enter the project
cd mac_uninstaller
# Install dependencies
flutter pub get
# Run on macOS
flutter run -d macosflutter build macosThe built app is under build/macos/Build/Products/Release/.
lib/core/— Theme and shared widgetslib/features/apps/— App list feature: data (models, services), logic (BLoC), presentation (screens, widgets)
Private / unpublished (publish_to: 'none' in pubspec.yaml).
