Skip to content

Commit 675ae83

Browse files
committed
FIX: 제보하기 화면 내 상세 제보 내용 TextField의 고정 height 제거 및 minLines 설정
1 parent ae85901 commit 675ae83

File tree

1 file changed

+1
-2
lines changed
  • presentation/src/main/java/com/threegap/bitnagil/presentation/report

1 file changed

+1
-2
lines changed

presentation/src/main/java/com/threegap/bitnagil/presentation/report/ReportScreen.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import androidx.compose.foundation.layout.Row
1818
import androidx.compose.foundation.layout.WindowInsets
1919
import androidx.compose.foundation.layout.fillMaxSize
2020
import androidx.compose.foundation.layout.fillMaxWidth
21-
import androidx.compose.foundation.layout.height
2221
import androidx.compose.foundation.layout.ime
2322
import androidx.compose.foundation.layout.padding
2423
import androidx.compose.foundation.layout.statusBarsPadding
@@ -305,7 +304,6 @@ private fun ReportScreen(
305304
value = uiState.reportContent,
306305
onValueChange = onReportContentChange,
307306
modifier = Modifier
308-
.height(88.dp)
309307
.focusRequester(contentFocusRequester),
310308
keyboardOptions = KeyboardOptions(
311309
imeAction = ImeAction.Done,
@@ -322,6 +320,7 @@ private fun ReportScreen(
322320
color = BitnagilTheme.colors.coolGray80,
323321
)
324322
},
323+
minLines = 3,
325324
)
326325

327326
Text(

0 commit comments

Comments
 (0)