VancedManager/app/src/main/res/layout/fragment_manager_changelog.xml

27 lines
669 B
XML
Raw Normal View History

2020-05-22 14:28:24 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-08-31 16:12:20 +00:00
<layout
2020-05-22 14:28:24 +00:00
xmlns:android="http://schemas.android.com/apk/res/android"
2020-08-31 16:12:20 +00:00
xmlns:tools="http://schemas.android.com/tools">
<data>
2020-05-22 14:28:24 +00:00
2020-08-31 16:12:20 +00:00
<variable
name="viewModel"
type="com.vanced.manager.ui.viewmodels.HomeViewModel" />
</data>
<LinearLayout
2020-05-22 14:28:24 +00:00
android:layout_width="match_parent"
2020-08-31 16:12:20 +00:00
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="16sp"
android:text="@{viewModel.manager.changelog}"/>
2020-05-22 14:28:24 +00:00
2020-08-31 16:12:20 +00:00
</LinearLayout>
</layout>