2020-02-02 14:59:33 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-02-02 18:46:51 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-02-02 14:59:33 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
2020-02-02 18:46:51 -03:00
|
|
|
<include
|
|
|
|
|
layout="@layout/item_user_card"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
2020-02-02 14:59:33 -03:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|