Skip to content

Instantly share code, notes, and snippets.

@waseefakhtar
Created August 27, 2023 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waseefakhtar/808b606b28b7d25e0edc4b565d839e19 to your computer and use it in GitHub Desktop.
Save waseefakhtar/808b606b28b7d25e0edc4b565d839e19 to your computer and use it in GitHub Desktop.
@Composable
fun AddMedicationScreen() {
Column(
modifier = Modifier
.padding(16.dp, 16.dp)
.verticalScroll(rememberScrollState()),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Text(
text = stringResource(id = R.string.add_medication),
fontWeight = FontWeight.Bold,
style = MaterialTheme.typography.displaySmall
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment