Skip to content

Commit

Permalink
Fixes #127
Browse files Browse the repository at this point in the history
  • Loading branch information
NikM3 committed Apr 21, 2023
1 parent 210677f commit 327b6f4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
7 changes: 4 additions & 3 deletions app/src/main/res/layout/activity_date_time.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Created by Team Symphony on 4/21/23, 3:22 PM
~ Created by Team Symphony on 4/21/23, 5:28 PM
~ Copyright (c) 2023 . All rights reserved.
~ Last modified 4/21/23, 1:42 PM
~ Last modified 4/21/23, 5:17 PM
-->

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
Expand Down Expand Up @@ -42,7 +42,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="@string/button_cancel" />
android:text="@string/button_cancel"
android:visibility="gone" />

<Button
android:id="@+id/dateTimeOK"
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/layout/activity_user_profile.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Created by Team Symphony on 4/19/23, 5:18 PM
~ Created by Team Symphony on 4/21/23, 5:28 PM
~ Copyright (c) 2023 . All rights reserved.
~ Last modified 4/19/23, 5:06 PM
~ Last modified 4/21/23, 5:27 PM
-->

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
Expand Down Expand Up @@ -45,6 +45,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:text="@string/PLACEHOLDER_TEXT"
android:textColor="@color/black"
android:textSize="20sp"
android:textStyle="bold" />

Expand Down
6 changes: 2 additions & 4 deletions app/src/main/res/layout/card_history.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Created by Team Symphony on 4/1/23, 4:23 AM
~ Created by Team Symphony on 4/21/23, 5:28 PM
~ Copyright (c) 2023 . All rights reserved.
~ Last modified 4/1/23, 4:20 AM
~ Last modified 4/21/23, 5:17 PM
-->

<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
Expand All @@ -26,7 +26,6 @@ will add padding in API v21+ as well to have the same measurements with previous
<LinearLayout
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="@drawable/border_thick"
android:gravity="center">

<TextView
Expand All @@ -36,7 +35,6 @@ will add padding in API v21+ as well to have the same measurements with previous
android:layout_margin="10dp"
android:layout_weight="1"
android:text="@string/PLACEHOLDER_TEXT"
android:textColor="@color/black"
android:textSize="18sp"
android:textStyle="bold" />

Expand Down

0 comments on commit 327b6f4

Please sign in to comment.