Files
hpos/app/src/main/res/layout/fragment_slideshow.xml

37 lines
1.4 KiB
XML
Raw Normal View History

<!-- SlideshowFragment layout -->
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.hpostesting.presentation.dashboard.SlideshowFragment">
<TextView
android:visibility="gone"
android:id="@+id/text_slideshow"
2023-06-08 19:27:34 +05:30
style="@style/title1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2023-06-08 19:27:34 +05:30
android:layout_margin="24dp"
android:textAlignment="center"
android:textSize="20sp"
2023-06-08 19:27:34 +05:30
android:text="@string/to_be_launched_in_next_version_of_the_app"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<!-- Language Settings -->
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/text_slideshow"
app:layout_constraintBottom_toBottomOf="parent">
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>