Skip to content

Commit

Permalink
[FEAT/#191] 인턴 상세 정보 컴포넌트 선택 영역 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Sep 2, 2024
1 parent 070a4ae commit 2739af5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions feature/src/main/java/com/terning/feature/intern/InternRoute.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.text.selection.SelectionContainer
import androidx.compose.material3.Scaffold
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
Expand Down Expand Up @@ -214,11 +215,13 @@ fun InternScreen(
bottom = 20.dp
)
) {
Text(
text = internInfoModel.detail.trimIndent(),
style = TerningTheme.typography.detail1,
color = Grey400
)
SelectionContainer {
Text(
text = internInfoModel.detail.trimIndent(),
style = TerningTheme.typography.body3,
color = Grey400
)
}
}
}
}
Expand Down

0 comments on commit 2739af5

Please sign in to comment.