Skip to content

Commit

Permalink
NestedScroll padding added, Secrets.kt added, Release APK Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaibhav2002 committed Jun 28, 2022
1 parent a1a8c21 commit 0a6a33e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
Binary file modified app/release/app-release.apk
Binary file not shown.
6 changes: 6 additions & 0 deletions app/src/main/java/com/docubox/util/Secrets.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.docubox.util

object Secrets {

const val BASE_URL = ""
}
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
android:background="?attr/backgroundColor"
android:gravity="center"
android:orientation="vertical"
android:paddingVertical="48dp"
tools:context=".ui.screens.auth.login.LoginFragment">

<TextView
android:id="@+id/titleText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="32dp"
android:layout_marginTop="48dp"
android:fontFamily="@font/poppins_medium"
android:text="Hello Again!"
android:textAlignment="center"
Expand Down
12 changes: 8 additions & 4 deletions app/src/main/res/layout/fragment_register.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout

xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<LinearLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -137,6 +140,7 @@
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"
android:layout_marginTop="24dp"
android:layout_marginBottom="48dp"
android:gravity="center">

<TextView
Expand Down

0 comments on commit 0a6a33e

Please sign in to comment.