Skip to content

Commit

Permalink
🔥 ADD color to stroke chips using the color in params
Browse files Browse the repository at this point in the history
  • Loading branch information
orlandev committed Mar 18, 2022
1 parent df311b7 commit d1764bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gmaplib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ afterEvaluate {
from components.release
groupId = 'com.github.orlandev'
artifactId = 'gmaplib'
version = '0.0.5'
version = '0.0.6'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gmaplib/src/main/java/com/orlandev/gmaplib/MapScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ fun MapScreen(
val chipBorderStroke =
BorderStroke(
0.7.dp,
color = MaterialTheme.colors.primary.copy(alpha = 0.7f)
color = fabContentColor.copy(alpha = 0.7f)
)

MapChip(
Expand Down

0 comments on commit d1764bc

Please sign in to comment.