Skip to content

Commit 0767170

Browse files
committed
chore(examples): use existing AOSP drawable names for Android tab icons
1 parent 5a02f04 commit 0767170

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/hello-world/app/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ def MainTabs() -> pn.Element:
4848
component=HomeScreen,
4949
options={
5050
"title": "Home",
51-
"tab_bar_icon": {"ios": "house.fill", "android": "ic_menu_home"},
51+
"tab_bar_icon": {"ios": "house.fill", "android": "ic_menu_compass"},
5252
},
5353
),
5454
Tab.Screen(
5555
"Layout",
5656
component=LayoutScreen,
5757
options={
5858
"title": "Layout",
59-
"tab_bar_icon": {"ios": "square.grid.2x2.fill", "android": "ic_menu_view"},
59+
"tab_bar_icon": {"ios": "square.grid.2x2.fill", "android": "ic_menu_gallery"},
6060
},
6161
),
6262
Tab.Screen(

0 commit comments

Comments
 (0)