CultureQuestORG/SDP2023

View on GitHub
app/src/main/res/layout/fragment_quiz_victory.xml

Summary

Maintainability
Test Coverage
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/backgroundVictory"
    android:orientation="vertical"
    android:gravity="center">

    <TextView
        android:id="@+id/congratulations"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/congratulations"
        android:fontFamily="@font/poppins_bold"
        android:textSize="36sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/pointsEarned"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:textSize="24sp" />

    <Button
        android:id="@+id/btnBackToTournament"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="32dp"
        android:background="@drawable/rounded_button"
        android:text="@string/back_to_the_tournament"
        android:fontFamily="@font/poppins_medium"
        android:textColor="@color/white"/>

</LinearLayout>