diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 08:08:47 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 08:08:47 +0000 |
| commit | de3e37cca4f34a30f9c0beef05f67c3d515d64c2 (patch) | |
| tree | 558da8786b5a7a4a07ebe8cd77785844ac669d24 /android/app/src/main/AndroidManifest.xml | |
| parent | dacb710fc4ea63baa05cc47016def3849b9db5fa (diff) | |
feat: native bottom sheet for widget task detail
Replaces browser deep-link with a transparent TaskDetailActivity that
shows a Material3 ModalBottomSheet (20-40% screen height). The launcher
shows through the transparent window behind the dark scrim. Sheet shows
source color dot, task title, and Mark Complete button for Todoist tasks.
Tapping outside or swiping down dismisses. No browser involved.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index f6bf015..3fc5603 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -10,6 +10,12 @@ android:theme="@android:style/Theme.DeviceDefault.DayNight" android:allowBackup="false"> + <!-- Task detail bottom sheet (opened by widget task taps) --> + <activity + android:name=".ui.TaskDetailActivity" + android:theme="@style/Theme.TaskDetail" + android:exported="false" /> + <!-- Settings activity (also the widget config screen) --> <activity android:name=".ui.SettingsActivity" |
