Minor changes

This commit is contained in:
2024-05-13 17:38:14 +05:30
parent 36bb96fb64
commit 880e876c63
6 changed files with 29 additions and 11 deletions

View File

@@ -121,6 +121,9 @@ class GetMoreInfoFragment : Fragment() {
viewModel.getInterestTopics()
}
genderMTxt.text = getString(R.string.boy)
genderFTxt.text = getString(R.string.girl)
} else {
// parent
datePicker.minDate =

View File

@@ -6,7 +6,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_marginHorizontal="15dp"
android:layout_marginBottom="10dp"
app:cardCornerRadius="@dimen/_20sdp"
app:cardCornerRadius="@dimen/_15sdp"
app:cardElevation="0dp"
app:cardBackgroundColor="@color/white_60">
@@ -20,15 +20,24 @@
android:orientation="horizontal"
>
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/image"
<androidx.cardview.widget.CardView
android:layout_width="@dimen/_40sdp"
android:layout_height="@dimen/_40sdp"
tools:src="@mipmap/ic_launcher"
app:civ_circle_background_color="@color/white"
app:civ_border_color="@color/white"
app:civ_border_width="5dp"
/>
app:cardCornerRadius="@dimen/_20sdp"
app:cardElevation="0dp"
app:cardBackgroundColor="@color/white"
>
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
/>
</androidx.cardview.widget.CardView>
<TextView
android:id="@+id/name"

View File

@@ -267,7 +267,7 @@
android:text="@string/don_t_forget_to_check_your_junk_spam_folder"
android:fontFamily="@font/exo_2_medium"
android:textColor="@color/color_primary"
android:textSize="@dimen/_14ssp"
android:textSize="@dimen/_12ssp"
android:textAlignment="center"
app:layout_constraintStart_toStartOf="parent"

View File

@@ -117,6 +117,7 @@
/>
<TextView
android:id="@+id/gender_m_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -160,6 +161,7 @@
/>
<TextView
android:id="@+id/gender_f_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -188,7 +190,7 @@
android:textSize="@dimen/_12ssp"
android:textAlignment="center"
android:layout_marginTop="15dp"
android:layout_marginTop="25dp"
/>
<DatePicker

View File

@@ -35,7 +35,7 @@
<string name="please_get_otp_under_16">कृपया अपने माता-पिता के ईमेल पर कोड प्राप्त करें</string>
<string name="request_them_for_verification_">अपने खाते को सक्रिय करने के लिए उनसे सत्यापन कोड के लिए अनुरोध करें</string>
<string name="select_username">"उपयोक्तानाम चुनें "</string>
<string name="great_now_let_s_create_your_wokaccount">आइए अब अपना WOKA अकाउंट बनाएं</string>
<string name="great_now_let_s_create_your_wokaccount">महान! आइए अब अपना WOKA अकाउंट बनाएं</string>
<string name="enter_a_username">एक उपयोगकर्ता नाम दर्ज करें</string>
<string name="what_s_your_name">"आपका नाम क्या है? "</string>
<string name="enter_your_name">अपना नाम दर्ज करें</string>
@@ -94,4 +94,6 @@
<string name="password_must_be_at_least_6_characters">पासवर्ड कम से कम 6 अंकों का होना चाहिए</string>
<string name="must_be_at_least_3_characters">कम से कम 3 अक्षर होने चाहिए</string>
<string name="required">कृपया दर्ज करें</string>
<string name="boy">लड़का</string>
<string name="girl">लड़की</string>
</resources>

View File

@@ -101,4 +101,6 @@
<string name="password_must_be_at_least_6_characters">Password must be at least 6 characters</string>
<string name="must_be_at_least_3_characters">Must be at least 3 characters</string>
<string name="required">Required</string>
<string name="boy">BOY</string>
<string name="girl">GIRL</string>
</resources>