Last active
October 30, 2023 13:25
-
-
Save armcha/4e33faad2994fd03fde6f0bc192dcaec to your computer and use it in GitHub Desktop.
This file contains 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
Box( | |
modifier = GlanceModifier | |
.fillMaxSize() | |
.background(Color.White), | |
contentAlignment = Alignment.Center | |
) { | |
GlanceText( | |
modifier = GlanceModifier.padding(horizontal = 20.dp), | |
text = "Welcome to App Widget", | |
font = R.font.good_times_rg, | |
fontSize = 15.sp, | |
color = Color.Black | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment