Arthelh/NCNF

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

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".views.fragments.organization.OrganizationEventsFragment">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/organization_events_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:elevation="20dp">

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/organization_events_recyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical"
            tools:layout_editor_absoluteX="126dp"
            tools:layout_editor_absoluteY="21dp" />

    </androidx.constraintlayout.widget.ConstraintLayout>


</FrameLayout>