File tree 1 file changed +3
-3
lines changed
Owl/app/src/main/java/com/example/owl/ui/onboarding
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -167,11 +167,11 @@ private enum class SelectionState { Unselected, Selected }
167
167
* Class holding animating values when transitioning topic chip states.
168
168
*/
169
169
private class TopicChipTransition (
170
- corerRadius : State <Dp >,
170
+ cornerRadius : State <Dp >,
171
171
selectedAlpha : State <Float >,
172
172
checkScale : State <Float >
173
173
) {
174
- val corerRadius by corerRadius
174
+ val cornerRadius by cornerRadius
175
175
val selectedAlpha by selectedAlpha
176
176
val checkScale by checkScale
177
177
}
@@ -214,7 +214,7 @@ private fun TopicChip(topic: Topic) {
214
214
elevation = OwlTheme .elevations.card,
215
215
shape = MaterialTheme .shapes.medium.copy(
216
216
topStart = CornerSize (
217
- topicChipTransitionState.corerRadius
217
+ topicChipTransitionState.cornerRadius
218
218
)
219
219
)
220
220
) {
You can’t perform that action at this time.
0 commit comments