aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.flutter-plugins-dependencies2
-rw-r--r--TODO.md4
-rw-r--r--lib/pages/Apps.dart2
3 files changed, 5 insertions, 3 deletions
diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies
index 3de600b..a4cc41f 100644
--- a/.flutter-plugins-dependencies
+++ b/.flutter-plugins-dependencies
@@ -1 +1 @@
-{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[],"android":[{"name":"android_intent","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/android_intent-0.3.7+2/","dependencies":[]},{"name":"device_apps","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/device_apps-1.0.9/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"android_intent","dependencies":[]},{"name":"device_apps","dependencies":[]}],"date_created":"2020-06-03 00:30:55.474566","version":"1.19.0-2.0.pre.214"} \ No newline at end of file
+{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[],"android":[{"name":"android_intent","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/android_intent-0.3.7+2/","dependencies":[]},{"name":"device_apps","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/device_apps-1.0.9/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"android_intent","dependencies":[]},{"name":"device_apps","dependencies":[]}],"date_created":"2020-06-03 00:33:49.915841","version":"1.19.0-2.0.pre.214"} \ No newline at end of file
diff --git a/TODO.md b/TODO.md
index 3b104df..ef2ce97 100644
--- a/TODO.md
+++ b/TODO.md
@@ -17,9 +17,11 @@
- [X] Create app list
- [X] Make app list searchable
- [X] Create options menu on long press
- - [ ] Add "add to favorites" action
- [X] Add uninstall action
- [X] Add goto app settings action
+ - [ ] Fix scroll/fling conflict (snap)
+ - [ ] Add "add to favorites" action
+ - [ ] Sort the list according to frequently used
- [ ] Fix uninstall action issue
- [ ] Make app list load faster
- [ ] Make keyboard close on swipe
diff --git a/lib/pages/Apps.dart b/lib/pages/Apps.dart
index 3bf54c5..3b0845f 100644
--- a/lib/pages/Apps.dart
+++ b/lib/pages/Apps.dart
@@ -31,7 +31,7 @@ class Option extends StatelessWidget {
class AppsView extends StatelessWidget {
Future<List<Application>> appListF = DeviceApps.getInstalledApplications(
- includeSystemApps: false,
+ includeSystemApps: true,
onlyAppsWithLaunchIntent: true,
);