Skip to content

Commit

Permalink
remove unused filter buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Fethi Tewelde committed Jun 5, 2024
1 parent cf980a2 commit 212c05a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.ArrowBack
import androidx.compose.material.icons.filled.FilterList
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
Expand Down Expand Up @@ -85,16 +84,6 @@ fun DetailScreen(
contentDescription = null
)
}
},
actions = {
IconButton(
onClick = { /* TODO */ },
) {
Icon(
imageVector = Icons.Default.FilterList,
contentDescription = null
)
}
}
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import androidx.compose.foundation.lazy.LazyRow
import androidx.compose.foundation.lazy.items
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.ArrowBack
import androidx.compose.material.icons.filled.FilterList
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
Expand Down Expand Up @@ -78,16 +77,6 @@ internal fun CollectionScreen(
contentDescription = null
)
}
},
actions = {
IconButton(
onClick = { /* TODO */ },
) {
Icon(
imageVector = Icons.Default.FilterList,
contentDescription = null
)
}
}
)
}
Expand Down

0 comments on commit 212c05a

Please sign in to comment.