Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created September 28, 2022 08:20
Show Gist options
  • Save arriolac/bc5d525a083c431cf9961bca57722e8e to your computer and use it in GitHub Desktop.
Save arriolac/bc5d525a083c431cf9961bca57722e8e to your computer and use it in GitHub Desktop.
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
Text(
"Hello Compose!",
Modifier.background(Color.Magenta)
.size(200.dp, 30.dp)
.padding(5.dp)
.alpha(0.5f)
.clickable {
// Called when Text clicked
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment