diff --git a/documentation/native/navigation-bar.html b/documentation/native/navigation-bar.html index 4894fccaf..a10687b1a 100644 --- a/documentation/native/navigation-bar.html +++ b/documentation/native/navigation-bar.html @@ -93,7 +93,7 @@
- The SearchBar
component displays a search bar in the navigation bar. It calls the onChangeText
prop whenever the search text changes. Any search results you render into the component's children are displayed in a new native screen that sits over the top of the current one. On Android, you need to set a navigationImage
and a Material3
theme in styles.xml, for example, Theme.Material3.Light.NoActionBar
. We allow the user to search their inbox in our example application by adding a SearchBar
component to the 'mail' scene.
+ The SearchBar
component displays a search bar in the navigation bar. It calls the onChangeText
prop whenever the search text changes. Any search results you render into the component's children are displayed in a new native screen that sits over the top of the current one. On Android, you need to set a Material3
theme in styles.xml, for example, Theme.Material3.Light.NoActionBar
. Android also expects a navigationImage
prop on the NavigationBar
component. We allow the user to search their inbox in our example application by adding a SearchBar
component to the 'mail' scene.