Skip to content

Instantly share code, notes, and snippets.

@ssindher11
Created January 29, 2022 07:52
Show Gist options
  • Save ssindher11/43ea2803dc5d2d7c91977df23b833e48 to your computer and use it in GitHub Desktop.
Save ssindher11/43ea2803dc5d2d7c91977df23b833e48 to your computer and use it in GitHub Desktop.
Text(
text = "MON",
style = MaterialTheme.typography.body1,
color = colorResource(id = R.color.dark_grey),
fontSize = 14.sp,
modifier = Modifier
.padding(start = 8.dp, end = 8.dp, bottom = 16.dp)
.constrainAs(day2) {
top.linkTo(day1.top)
bottom.linkTo(day1.bottom)
}
.clickable {
selectedDateStartState.value = day2.start
selectedDateEndState.value = day2.end
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment