Login Feature -completed

This commit is contained in:
smileomi18@gmail.com
2023-07-11 16:56:26 +05:30
parent 9a1fc15902
commit ab9392cd59
11 changed files with 67 additions and 45 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -62,7 +62,7 @@
android:layout_height="wrap_content"
android:hint="@string/login_id"
android:inputType="textCapCharacters"
android:maxLength="12" />
android:maxLength="13" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout

View File

@@ -54,6 +54,20 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/userName" />
<TextView
android:id="@+id/teststatus"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:fontFamily="@font/poppins_bold"
android:layout_marginTop="16dp"
android:gravity="center"
android:textColor="@color/black"
android:textSize="16sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/userId" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>

View File

@@ -3,7 +3,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mobile_navigation"
app:startDestination="@+id/nav_home">
app:startDestination="@+id/loginFragment">
<fragment
android:id="@+id/nav_home"
@@ -15,6 +15,10 @@
<action
android:id="@+id/action_nav_home_to_mainActivity"
app:destination="@id/mainActivity" />
<action
android:id="@+id/action_nav_home_to_loginFragment"
app:destination="@id/loginFragment"
app:popUpToInclusive="true"/>
</fragment>
<fragment