Skip to content

Commit

Permalink
home: dont show tab icons in phone mode
Browse files Browse the repository at this point in the history
  • Loading branch information
OxygenCobalt committed Sep 18, 2024
1 parent c108ec7 commit 01bebfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class AdaptiveTabStrategy(context: Context, private val tabs: List<MusicType>) :
// On small screens, only display an icon.
width < 370 -> tab.setIcon(icon).setContentDescription(homeTab.nameRes)
// 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.
else -> tab.setIcon(icon).setText(homeTab.nameRes)
}
Expand Down

0 comments on commit 01bebfe

Please sign in to comment.