diff options
| -rw-r--r-- | .flutter-plugins-dependencies | 2 | ||||
| -rw-r--r-- | TODO.md | 4 | ||||
| -rw-r--r-- | lib/pages/Apps.dart | 2 |
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 @@ -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, ); |
