Skip to content

Commit

Permalink
Fix UI
Browse files Browse the repository at this point in the history
  • Loading branch information
adhiamboperes committed Mar 27, 2024
1 parent 722c759 commit 0a24f11
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
<ImageView
android:id="@+id/onboarding_app_language_image"
android:layout_width="132dp"
android:layout_height="140dp"
android:layout_marginEnd="@dimen/onboarding_shared_margin_3xl"
android:layout_height="138dp"
android:layout_marginEnd="@dimen/onboarding_shared_margin_2xl"
android:contentDescription="@string/onboarding_otter_content_description"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/onboarding_language_title"
Expand All @@ -72,14 +72,18 @@

<RelativeLayout
android:id="@+id/onboarding_language_dropdown_background"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/onboarding_shared_margin_5xl"
android:layout_marginEnd="@dimen/onboarding_shared_margin_5xl"
android:layout_marginBottom="@dimen/onboarding_shared_margin_small"
android:background="@drawable/dropdown_background"
android:elevation="@dimen/onboarding_shared_elevation"
android:padding="@dimen/onboarding_shared_padding_small"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/onboarding_language_label"
app:layout_constraintWidth_percent="0.30"
app:layout_constraintBottom_toTopOf="@id/onboarding_language_explanation">

<ImageView
Expand Down Expand Up @@ -129,11 +133,12 @@
<Button
android:id="@+id/onboarding_language_lets_go_button"
style="@style/OnboardingLanguageLetsGoButton"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/onboarding_language_activity_button_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
app:layout_constraintEnd_toEndOf="@id/onboarding_language_explanation"
app:layout_constraintWidth_percent="0.40"
app:layout_constraintStart_toStartOf="@id/onboarding_language_explanation" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.40" />
app:layout_constraintGuide_percent="0.38" />

<androidx.constraintlayout.widget.Guideline
android:id="@+id/onboarding_language_center_guide"
Expand Down

0 comments on commit 0a24f11

Please sign in to comment.