Skip to content

Commit

Permalink
moved dependencies to buildSrc
Browse files Browse the repository at this point in the history
  • Loading branch information
charlee-dev committed Mar 1, 2022
1 parent 8c99210 commit 09035a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {
debugImplementation(Dependencies.composeToolingDebug)
debugImplementation(Dependencies.composeManifestDebug)

// implementation("com.github.adrianwitaszak:neumorph-ui:0.7.0")
// implementation("com.github.adrianwitaszak:neumorph-ui:0.7.7")

testImplementation(Dependencies.jUnit4)
testImplementation(Dependencies.composeTest)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ fun Header(
) {
Text(
text = text,
style = style
style = style,
modifier = modifier
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ fun HomeItemPreviewLight() {
private fun HomeItemPreviewDark() {
PreviewTemplate(
darkTheme = true,
) { text ->
) {
ItemPanel(title = "Coming soon") { elevation, corners, color ->
MorphPressed(
elevation = elevation.dp,
Expand Down

0 comments on commit 09035a8

Please sign in to comment.