Skip to content

Commit

Permalink
Fix rendering for long text
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Marciset authored and quentinmarciset committed Jan 11, 2023
1 parent 78b1422 commit 22c32b5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions android/app/src/main/res/layout/layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

<TextView
android:id="@+id/___SPECIFIC_ID_2___"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
Expand All @@ -72,13 +72,14 @@
android:textAppearance="@style/TextAppearance.Material3.TitleLarge"
android:textColor="@android:color/white"
app:layout_constraintBottom_toTopOf="@id/___SPECIFIC_ID_3___"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/___SPECIFIC_ID_1___"
app:layout_constraintTop_toTopOf="@+id/___SPECIFIC_ID_1___"
tools:text="My field 2" />

<TextView
android:id="@+id/___SPECIFIC_ID_3___"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
Expand All @@ -90,6 +91,7 @@
android:textAlignment="textStart"
android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
android:textColor="@android:color/white"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/___SPECIFIC_ID_1___"
app:layout_constraintTop_toBottomOf="@+id/___SPECIFIC_ID_2___"
tools:text="My field 3" />
Expand Down

0 comments on commit 22c32b5

Please sign in to comment.