Skip to content
Snippets Groups Projects
Unverified Commit e219baac authored by Matthias Urhahn's avatar Matthias Urhahn Committed by GitHub
Browse files

Fix button alignment Missing top padding if checkin texts are single row (#2826)

parent 746eea8b
No related branches found
No related tags found
No related merge requests found
...@@ -98,6 +98,13 @@ ...@@ -98,6 +98,13 @@
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.widget.Barrier
android:id="@+id/button_barrier"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="bottom"
app:constraint_referenced_ids="checkout_info,traceLocationCardHighlightView" />
<com.google.android.material.button.MaterialButton <com.google.android.material.button.MaterialButton
android:id="@+id/checkout_action" android:id="@+id/checkout_action"
style="@style/Widget.MaterialComponents.Button.OutlinedButton" style="@style/Widget.MaterialComponents.Button.OutlinedButton"
...@@ -112,6 +119,7 @@ ...@@ -112,6 +119,7 @@
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/checkout_info"
app:strokeColor="@color/colorAccent" /> app:strokeColor="@color/colorAccent" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment