Modifier 는 길어지지 않도록 줄바꿈으로 작성하기@Composable
fun MyScreen(
modifier: Modifier = Modifier
) {
Row(
modifier = modifier
.fillMaxSize()
.clickable {}
...
)
}
[what]\\_[where]\\_[des] ex) tv_addCalendar_titleHeader
| Prefix | 풀네임 |
|---|---|
layout |
LinearLayout, ConstraintLayout,include ... |
custom |
CustomView |
tv |
TextView |
btn |
Button |
img |
ImageView |
rv |
RecyclerView |
cb |
CheckBox |
cg |
CheckGroup |
switch |
Switch |
view |
View |
toolbar |
Toolbar |
| 그 외 | CamelCase 앞글자 따서 짓기 |
<WHAT>(_<WHERE>)_<DESCRIPTION>(_<SIZE>)<WHERE>는 생략 가능하다.<SIZE>는 생략 가능하다.