You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/architecture/intents.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,7 +265,7 @@ After finish() in DetailActivity:
265
265
266
266
The `ActivityNavigator` is the core routing engine that processes intents and launches activities. It handles both explicit and implicit intent resolution.
@@ -610,7 +610,7 @@ class AppDetailActivity(Activity):
610
610
611
611
### Example 1: Settings App Navigation
612
612
613
-
From [`MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.settings/assets/settings.py`](MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.settings/assets/settings.py):
613
+
From [`MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.settings/assets/settings.py`](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/internal_filesystem/builtin/apps/com.micropythonos.settings/assets/settings.py):
614
614
615
615
```python
616
616
from mpos import Intent, Activity
@@ -635,7 +635,7 @@ class SettingsActivity(Activity):
635
635
636
636
### Example 2: WiFi App with Result Handling
637
637
638
-
From [`MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py`](MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py):
638
+
From [`MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py`](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py):
639
639
640
640
```python
641
641
from mpos import Intent, Activity
@@ -674,7 +674,7 @@ class EditNetwork(Activity):
674
674
675
675
### Example 3: Camera QR Scanning
676
676
677
-
From [`MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py`](MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py):
677
+
From [`MicroPythonOS/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py`](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py):
678
678
679
679
```python
680
680
from mpos import Intent, Activity
@@ -884,14 +884,13 @@ MicroPythonOS Intents are inspired by Android's Intent system but simplified for
884
884
885
885
The Intent system is implemented across these core files:
0 commit comments