Skip to content

Commit a31fec6

Browse files
authored
Merge branch 'main' into mobile-2.2.0
2 parents e6cf320 + 9ae0689 commit a31fec6

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

resources/views/docs/mobile/2/getting-started/changelog.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@ order: 2
99
EDGE components now validate required props at render time and provide helpful error messages showing exactly which props are missing and how to fix them.
1010

1111
### Direct SF Symbol Support (iOS)
12-
Use any SF Symbol directly by including a `.` in the icon name (e.g., `car.side.fill`, `flashlight.on.fill`).
12+
Use any SF Symbol directly (e.g., `car.side.fill`, `flashlight.on.fill`).
1313

1414
### Font-based Material Icons (Android)
1515
Reduced Android app size by ~30MB by switching from the `material-icons-extended` library to a lightweight font-based approach. Any Material Icon ligature name now works directly.
1616

1717
@verbatim
1818
```blade
19-
icon="{{ \Native\Mobile\Facades\System::isIos() ? 'flashlight.on.fill' : 'flashlight_on' }}"
19+
@use(Native\Mobile\Facades\System)
20+
21+
<native:bottom-nav-item
22+
...
23+
icon="{{ System::isIos() ? 'flashlight.on.fill' : 'flashlight_on' }}"
24+
/>
2025
```
2126
@endverbatim
2227

@@ -25,7 +30,7 @@ icon="{{ \Native\Mobile\Facades\System::isIos() ? 'flashlight.on.fill' : 'flashl
2530
### Foreground permissions
2631
Prevent removal of FOREGROUND_SERVICE and POST_NOTIFICATIONS permissions when they're needed by camera features, even if push notifications are disabled
2732

28-
### FSymlink fix
33+
### Symlink fix
2934
Run storage:unlink before storage:link to handle stale symlinks, and exclude public/storage from build to prevent symlink conflicts
3035

3136
### iOS Push Notifications

0 commit comments

Comments
 (0)