Skip to content

Commit 0a6a33e

Browse files
committed
NestedScroll padding added, Secrets.kt added, Release APK Updated
1 parent a1a8c21 commit 0a6a33e

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

app/release/app-release.apk

68 Bytes
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.docubox.util
2+
3+
object Secrets {
4+
5+
const val BASE_URL = ""
6+
}

app/src/main/res/layout/fragment_login.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
android:background="?attr/backgroundColor"
2121
android:gravity="center"
2222
android:orientation="vertical"
23+
android:paddingVertical="48dp"
2324
tools:context=".ui.screens.auth.login.LoginFragment">
2425

2526
<TextView
2627
android:id="@+id/titleText"
2728
android:layout_width="match_parent"
2829
android:layout_height="wrap_content"
2930
android:layout_marginHorizontal="32dp"
30-
android:layout_marginTop="48dp"
3131
android:fontFamily="@font/poppins_medium"
3232
android:text="Hello Again!"
3333
android:textAlignment="center"

app/src/main/res/layout/fragment_register.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<androidx.constraintlayout.widget.ConstraintLayout
3-
4-
xmlns:android="http://schemas.android.com/apk/res/android"
2+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
53
xmlns:app="http://schemas.android.com/apk/res-auto"
64
xmlns:tools="http://schemas.android.com/tools"
75
android:layout_width="match_parent"
86
android:layout_height="match_parent">
97

108
<androidx.core.widget.NestedScrollView
119
android:layout_width="match_parent"
12-
android:layout_height="match_parent">
10+
android:layout_height="match_parent"
11+
app:layout_constraintBottom_toBottomOf="parent"
12+
app:layout_constraintEnd_toEndOf="parent"
13+
app:layout_constraintHorizontal_bias="0.5"
14+
app:layout_constraintStart_toStartOf="parent"
15+
app:layout_constraintTop_toTopOf="parent">
1316

1417
<LinearLayout
1518
android:layout_width="match_parent"
@@ -137,6 +140,7 @@
137140
android:layout_height="wrap_content"
138141
android:layout_marginHorizontal="24dp"
139142
android:layout_marginTop="24dp"
143+
android:layout_marginBottom="48dp"
140144
android:gravity="center">
141145

142146
<TextView

0 commit comments

Comments
 (0)