File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
core/designsystem/src/main/java/com/chat/designsystem/component/textfield Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,24 @@ import androidx.compose.runtime.mutableStateOf
8
8
import androidx.compose.runtime.remember
9
9
import androidx.compose.runtime.setValue
10
10
import androidx.compose.ui.Modifier
11
- import androidx.compose.ui.graphics.Color
12
11
import androidx.compose.ui.tooling.preview.Preview
13
12
import androidx.compose.ui.unit.dp
13
+ import com.chat.designsystem.theme.N5
14
14
15
15
@Composable
16
- fun InviteTextField (modifier : Modifier = Modifier ) {
16
+ fun InviteTextField (
17
+ modifier : Modifier = Modifier ,
18
+ contentPadding : PaddingValues = PaddingValues (8.dp)
19
+ ) {
17
20
var value by remember { mutableStateOf(" " ) }
18
21
19
22
GoSocketTextField (
20
23
modifier = modifier,
21
24
value = value,
22
- placeholder = " Email " ,
23
- backgroundColor = Color ( 0x14000000 ) ,
25
+ placeholder = " 받는사람 : 검색하기 " ,
26
+ backgroundColor = N5 ,
24
27
backgroundShape = RoundedCornerShape (8 .dp),
25
- contentPadding = PaddingValues (horizontal = 14 .dp, vertical = 9 .dp) ,
28
+ contentPadding = contentPadding ,
26
29
onValueChange = { value = it },
27
30
)
28
31
}
You can’t perform that action at this time.
0 commit comments