[UI + Dependencies] Applied new style + added firebase

Added the Firebase Dependency and login flow. Also applied some new
styling. The new color is more reddish.
This commit is contained in:
Alexander Dörflinger
2025-03-18 14:43:55 +01:00
parent 4bb071e488
commit b20bb86be3
27 changed files with 414 additions and 245 deletions

View File

@@ -3,11 +3,24 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".HelperGridActivity">
<TextView
android:id="@+id/tv_welcome_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/text_size_welcome_message"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:text="@string/welcome_message_test"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/tv_welcome_message"
app:layout_constraintBottom_toBottomOf="parent"
android:weightSum="2">
<include layout="@layout/helper_group_tile_item"