Android/Compose
[Android Compose] Text 에 Border 및 Rounded Corner 적용하기
불필요한 코드나 잘못 작성된 내용에 대한 지적은 언제나 환영합니다. 👍 Text 컴포저블에 Border를 설정해보겠습니다. 1. 기본 사각형 Border @Composable fun TextWithBorder(modifier: Modifier = Modifier) { Text( modifier = modifier.border(BorderStroke(2.dp, Color.Red)), text = "This is a sample text. This is an example of adding border to text.", fontSize = 24.sp ) } Preview 2. Border + RoundedCornerShape 적용 @Composable fun TextWithRoundedBorder(modi..
2023. 4. 15. 11:50