home: dont show tab icons in phone mode

This commit is contained in:
Alexander Capehart 2024-09-18 15:56:40 -06:00
parent c108ec7e12
commit 01bebfe63d

View file

@ -52,7 +52,7 @@ class AdaptiveTabStrategy(context: Context, private val tabs: List<MusicType>) :
// On small screens, only display an icon. // On small screens, only display an icon.
width < 370 -> tab.setIcon(icon).setContentDescription(homeTab.nameRes) width < 370 -> tab.setIcon(icon).setContentDescription(homeTab.nameRes)
// On large screens, display an icon and text. // On large screens, display an icon and text.
width < 600 -> tab.setText(homeTab.nameRes).setIcon(icon) width < 600 -> tab.setText(homeTab.nameRes)
// On medium-size screens, display text. // On medium-size screens, display text.
else -> tab.setIcon(icon).setText(homeTab.nameRes) else -> tab.setIcon(icon).setText(homeTab.nameRes)
} }