Add login data examples
This commit is contained in:
@@ -23,6 +23,8 @@
|
|||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
app:layout_constraintVertical_bias="0.1"
|
app:layout_constraintVertical_bias="0.1"
|
||||||
|
app:helperText="@string/fragment_authentication_email_input_helper_text"
|
||||||
|
app:helperTextEnabled="true"
|
||||||
app:layout_constraintVertical_chainStyle="packed">
|
app:layout_constraintVertical_chainStyle="packed">
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
@@ -33,20 +35,22 @@
|
|||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/password_input_layout"
|
android:id="@+id/password_input_layout"
|
||||||
style="@style/SmallMarginTextInputLayoutStyle"
|
style="@style/SmallMarginTextInputLayoutStyle"
|
||||||
android:hint="@string/fragment_authentication_input_hint_password"
|
android:hint="@string/fragment_authentication_input_hint_password"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/button"
|
app:layout_constraintBottom_toTopOf="@+id/button"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:endIconMode="password_toggle"
|
app:endIconMode="password_toggle"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/email_input_layout">
|
app:helperText="@string/fragment_authentication_password_input_helper_text"
|
||||||
|
app:helperTextEnabled="true"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/email_input_layout">
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:id="@+id/password_input"
|
android:id="@+id/password_input"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:inputType="textPassword" />
|
android:inputType="textPassword" />
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -39,4 +39,6 @@
|
|||||||
<string name="fragment_add_recipe_save_success">Рецепт сохранен успешно</string>
|
<string name="fragment_add_recipe_save_success">Рецепт сохранен успешно</string>
|
||||||
<string name="fragment_add_recipe_clear_button">Очистить</string>
|
<string name="fragment_add_recipe_clear_button">Очистить</string>
|
||||||
<string name="fragment_base_url_url_input_helper_text">Пример: demo.mealie.io</string>
|
<string name="fragment_base_url_url_input_helper_text">Пример: demo.mealie.io</string>
|
||||||
|
<string name="fragment_authentication_email_input_helper_text">Пример: changeme@email.com</string>
|
||||||
|
<string name="fragment_authentication_password_input_helper_text">Пример: demo</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -43,4 +43,6 @@
|
|||||||
<string name="fragment_add_recipe_save_success">Saved recipe successfully</string>
|
<string name="fragment_add_recipe_save_success">Saved recipe successfully</string>
|
||||||
<string name="fragment_add_recipe_clear_button">Clear</string>
|
<string name="fragment_add_recipe_clear_button">Clear</string>
|
||||||
<string name="fragment_base_url_url_input_helper_text">Example: demo.mealie.io</string>
|
<string name="fragment_base_url_url_input_helper_text">Example: demo.mealie.io</string>
|
||||||
|
<string name="fragment_authentication_email_input_helper_text">Example: changeme@email.com</string>
|
||||||
|
<string name="fragment_authentication_password_input_helper_text">Example: demo</string>
|
||||||
</resources>
|
</resources>
|
||||||
Reference in New Issue
Block a user