Skip to content

Commit

Permalink
Little fix in BottomSheetWithCloseDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluchu committed Aug 24, 2021
1 parent 24a556b commit 6ad10cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jchucomponentscompose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ afterEvaluate {
from components.release
groupId = "com.jeluchu"
artifactId = "jchucomponentscompose"
version = "0.1.0"
version = "0.1.1"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ import androidx.compose.ui.unit.dp

@Composable
fun BottomSheetWithCloseDialog(
content: @Composable () -> Unit,
modifier: Modifier = Modifier,
onClosePressed: () -> Unit,
modifier: Modifier = Modifier,
closeButtonColor: Color = Color.Gray,
content: @Composable () -> Unit
) {

Box(modifier.fillMaxWidth()) {
Expand Down

0 comments on commit 6ad10cb

Please sign in to comment.