Skip to content

Commit

Permalink
feat(Favourites): icons on sorting buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
urFate committed Aug 23, 2024
1 parent 36eff56 commit 24390de
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.rounded.Done
import androidx.compose.material.icons.rounded.DoneAll
import androidx.compose.material.icons.rounded.FilterList
import androidx.compose.material.icons.rounded.Refresh
import androidx.compose.material3.BottomSheetDefaults
import androidx.compose.material3.Button
import androidx.compose.material3.ExperimentalMaterial3Api
Expand Down Expand Up @@ -294,6 +296,7 @@ fun SortingSheetScreen(
model.selectedKind.value = null
},
) {
Icon(modifier = Modifier.size(34.dp).padding(8.dp, 0.dp), imageVector = Icons.Rounded.Refresh, contentDescription = "Reset")
Text(text = stringResource(id = R.string.reset))
}

Expand All @@ -309,6 +312,7 @@ fun SortingSheetScreen(
}
}
) {
Icon(modifier = Modifier.size(34.dp).padding(8.dp, 0.dp), imageVector = Icons.Rounded.DoneAll, contentDescription = "Apply")
Text(text = stringResource(id = R.string.apply))
}
}
Expand Down

0 comments on commit 24390de

Please sign in to comment.