Skip to content

Commit

Permalink
[UI] 미션생성 과정 description 개선 (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
KxxHyoRim committed Feb 4, 2024
1 parent 03f47eb commit 1691ec7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
4 changes: 3 additions & 1 deletion common-ui/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<string name="github_url_only">전체공개된 github URL만 입력할 수 있습니다.</string>
<string name="see_create_mission_guide">미션 생성 가이드 보기</string>
<string name="which_stack_to_use">어떤 스택을 사용하시나요?</string>
<string name="choose_tech_stack_description">미션에서 사용되는 기술 스택을 선택하세요.\n자유로운 코드 리뷰 시 본인이 리뷰 가능한 기술 스택을 선택하세요.</string>
<string name="choose_tech_stack_description">미션에서 사용되는 기술 스택을 선택하세요. 자유로운 코드 리뷰 시 본인이 리뷰 가능한 기술 스택을 선택하세요.</string>
<string name="what_kind_of_mission">어떤 미션인가요?</string>
<string name="mission_description_example">ex) 미션 소개, 구현 요구 사항, 배울 수 있는 것</string>
<string name="recommend_group">이런 사람에게 추천해요.</string>
Expand All @@ -84,6 +84,8 @@
<string name="optional">*선택</string>
<string name="complete">완료</string>
<string name="until_when_should_you_recruit_reviewers">언제까지 리뷰이를 모집할까요?</string>
<string name="automatically_close_when_recruit_finished">정원이 차면 자동으로 모집이 마감됩니다.</string>
<string name="price_per_reviewee">리뷰이 한 명당 받을 가격입니다.</string>

<!-- 서비스 준비 중 -->
<string name="service_under_preparation">서비스 준비중입니다.</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@

<TextView
android:id="@+id/tv_choose_over_one"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/base_guideline"
android:layout_marginTop="5dp"
android:text="@string/choose_tech_stack_description"
android:textAppearance="@style/Body2"
android:textColor="@color/gray_6"
app:layout_constraintStart_toStartOf="@id/tv_stack_to_use"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_stack_to_use" />

<com.google.android.material.chip.ChipGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,17 @@
app:layout_constraintStart_toStartOf="@id/gl_start"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/tv_auto_close"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/base_guideline"
android:layout_marginTop="10dp"
android:text="@string/automatically_close_when_recruit_finished"
android:textAppearance="@style/Body2"
android:textColor="@color/black"
app:layout_constraintTop_toBottomOf="@id/tv_num_of_recruits" />

<EditText
android:id="@+id/et_num_of_recruits"
style="@style/LGTMEditTextStyle"
Expand All @@ -62,7 +73,7 @@
android:inputType="number"
android:maxLength="9"
app:layout_constraintStart_toStartOf="@id/gl_start"
app:layout_constraintTop_toBottomOf="@id/tv_num_of_recruits" />
app:layout_constraintTop_toBottomOf="@id/tv_auto_close" />

<TextView
android:layout_width="wrap_content"
Expand All @@ -85,6 +96,17 @@
app:layout_constraintStart_toStartOf="@id/gl_start"
app:layout_constraintTop_toBottomOf="@id/et_num_of_recruits" />

<TextView
android:id="@+id/tv_price_per_reviewee"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/base_guideline"
android:layout_marginTop="10dp"
android:text="@string/price_per_reviewee"
android:textAppearance="@style/Body2"
android:textColor="@color/black"
app:layout_constraintTop_toBottomOf="@id/tv_price" />

<EditText
android:id="@+id/et_price"
style="@style/LGTMEditTextStyle"
Expand All @@ -98,7 +120,7 @@
android:maxLength="9"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@id/gl_start"
app:layout_constraintTop_toBottomOf="@id/tv_price"
app:layout_constraintTop_toBottomOf="@id/tv_price_per_reviewee"
tools:text="100,000" />

<TextView
Expand Down

0 comments on commit 1691ec7

Please sign in to comment.