Skip to content

Commit 6cc0c6f

Browse files
committed
Update version number and modify addDivider function
The version number in build.gradle.kts has been incremented from 1.0.25 to 1.0.26. Additionally, the addDivider function in ComposeStarterStep.kt has been modified to not call the separator function.
1 parent 2094bf0 commit 6cc0c6f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "com.programmersbox"
11-
version = "1.0.25"
11+
version = "1.0.26"
1212

1313
repositories {
1414
mavenCentral()

src/main/kotlin/com/programmersbox/fullmultiplatformcompose/steps/ComposeStarterStep.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ class ComposeStarterStep(
5656
}
5757
}
5858

59-
private fun Panel.addDivider() = separator()
59+
private fun Panel.addDivider() {
60+
//separator()
61+
}
6062

6163
private fun Panel.addCheckboxItem(
6264
label: String,

0 commit comments

Comments
 (0)