Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb3a08e9 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Add a divider between tasks list and tasks details for tablets

parent 29cb6795
Loading
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
            app:layout_constraintTop_toBottomOf="@id/appbar"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="@id/divider"
            />

    <com.google.android.material.floatingactionbutton.FloatingActionButton
@@ -54,7 +55,7 @@
            app:tint="@color/e_background"
            android:tint="@color/e_background"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="@id/pager"/>
            app:layout_constraintEnd_toEndOf="@id/divider"/>

    <FrameLayout
            android:id="@+id/task_detail_container"
@@ -65,6 +66,16 @@
            android:backgroundTint="@color/color_default_background"
            android:background="@drawable/opentasks_popup_background_mtrl_mult"
            app:layout_constraintTop_toBottomOf="@id/appbar"
            app:layout_constraintStart_toEndOf="@id/divider"
            app:layout_constraintBottom_toBottomOf="parent"/>

    <View
            android:id="@+id/divider"
            android:layout_width="1dp"
            android:layout_height="0dp"
            android:background="@color/e_divider_color"
            app:layout_constraintStart_toEndOf="@id/pager"
            app:layout_constraintTop_toBottomOf="@id/appbar"
            app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>
 No newline at end of file
+11 −1
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
                app:layout_constraintTop_toBottomOf="@id/appbar"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="@id/divider"
                />

        <com.google.android.material.floatingactionbutton.FloatingActionButton
@@ -54,7 +55,7 @@
                app:backgroundTint="@color/e_accent"
                android:tint="@color/e_background"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="@id/pager"/>
                app:layout_constraintEnd_toEndOf="@id/divider"/>

        <FrameLayout
                android:id="@+id/task_detail_container"
@@ -65,6 +66,15 @@
                android:backgroundTint="@color/color_default_background"
                android:background="@drawable/opentasks_popup_background_mtrl_mult"
                app:layout_constraintTop_toBottomOf="@id/appbar"
                app:layout_constraintStart_toEndOf="@id/divider"
                app:layout_constraintBottom_toBottomOf="parent"/>
        <View
                android:id="@+id/divider"
                android:layout_width="1dp"
                android:layout_height="0dp"
                android:background="@color/e_divider_color"
                app:layout_constraintStart_toEndOf="@id/pager"
                app:layout_constraintTop_toBottomOf="@id/appbar"
                app:layout_constraintBottom_toBottomOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>
 No newline at end of file