mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-06-20 06:09:19 +00:00
Fix: Messed up chip icons tint
This commit is contained in:
@ -68,12 +68,12 @@ class ExploreFragment : MainNavFragmentX() {
|
||||
viewModel.categories.observe(viewLifecycleOwner) {
|
||||
binding.categories.apply {
|
||||
removeAllViews()
|
||||
addView(Chip(requireContext(), null, R.attr.chipStyle).apply {
|
||||
addView(Chip(requireContext(), null, R.attr.categoryChipStyle).apply {
|
||||
setText(R.string.all_applications)
|
||||
id = R.id.SHOW_ALL
|
||||
})
|
||||
it.forEach {
|
||||
addView(Chip(requireContext(), null, R.attr.chipStyle).apply {
|
||||
addView(Chip(requireContext(), null, R.attr.categoryChipStyle).apply {
|
||||
text = it
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user