Created
September 28, 2022 08:20
-
-
Save arriolac/bc5d525a083c431cf9961bca57722e8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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