Files
DaysLeft/app/src/main/res/layout/fragment_tools.xml
hmalik144 66af16b999 ## Migrated to kotlin
# migrated to androidx

- update to mvvm
- creation of viewmodels and factories
- dependency injection with kodein
- app class created with modules
- creation of firebase/live data class

(put out fires from migration)
2020-07-10 22:08:16 +01:00

33 lines
1.1 KiB
XML

<?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=".ui.main.tools.FragmentTools">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center">
<Button
android:id="@+id/compile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Shift List"
android:background="@drawable/cardviewoutline"
android:layout_margin="18dp"/>
<Button
android:id="@+id/summary_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="18dp"
android:background="@drawable/cardviewoutline"
android:text="Summary" />
</LinearLayout>
</FrameLayout>