Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADD/#49] 필터링 재설정 / Text 컴포넌트 구현 #50

Merged
merged 7 commits into from
Jul 11, 2024
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package com.terning.feature.home.changefilter.component

import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import com.terning.core.designsystem.theme.Black
import com.terning.core.designsystem.theme.TerningTheme

@Composable
fun FilteringMainTitleText(
text: String,
modifier: Modifier = Modifier,
) {
Text(
text = text,
style = TerningTheme.typography.title3,
color = Black,
modifier = modifier,
)
Comment on lines +15 to +20
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 modifier는 추후에 쓰일 예정인가용???

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

네!! 나중에 padding 적용할 때 사용될 예정입니다요~

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package com.terning.feature.home.changefilter.component

import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import com.terning.core.designsystem.theme.Grey300
import com.terning.core.designsystem.theme.TerningTheme

@Composable
fun FilteringSubTitleText(
text: String,
modifier: Modifier = Modifier,
) {
Text(
text = text,
style = TerningTheme.typography.body5,
color = Grey300,
modifier = modifier,
)
}
8 changes: 8 additions & 0 deletions feature/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,12 @@
<string name="calendar_button_description_list">list</string>
<string name="calendar_animation_label">Calendar Transition</string>

<!-- changeFilter -->
<string name="change_filter_grade_main">재학 상태를 선택해주세요</string>
<string name="change_filter_period_main">희망하는 인턴 근무 기간을 선택해주세요</string>
<string name="change_filter_start_work_main">입사를 계획중인 달을 선택해주세요</string>
<string name="change_filter_grade_sub">휴학중이라면, 휴학 전 마지막 수료 학년을 선택해주세요</string>
<string name="change_filter_period_sub">선택한 기간동안 근무할 수 있는 인턴 공고를 찾아드릴게요</string>
<string name="change_filter_start_work_sub">선택한 달부터 근무를 시작할 수 있는 공고를 찾아드릴게요</string>

</resources>