-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #3822: Remove maxLines contsraint's to enable long text to linebreak #4547
Changes from 3 commits
3a96740
d6e03cc
dbbae53
b370af2
c391b54
39c99a0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ | |
android:layout_marginEnd="160dp" | ||
android:fontFamily="sans-serif-medium" | ||
android:gravity="center_horizontal" | ||
android:maxLines="1" | ||
android:maxLines="2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same previous comment applies to this code too. Remove maxLines attribute. Also, please re-generate screenshots and update PR description just to be sure There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Noted. |
||
android:text="@string/onboarding_slide_3_title" | ||
android:textSize="32sp" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ | |
android:layout_marginBottom="16dp" | ||
android:fontFamily="sans-serif-medium" | ||
android:gravity="center_horizontal" | ||
android:maxLines="1" | ||
android:maxLines="2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same previous comment applies to this code too. Remove maxLines attribute. Also, please re-generate screenshots and update PR description just to be sure There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Noted. |
||
android:text="@{viewModel.title}" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ | |
android:layout_marginBottom="16dp" | ||
android:fontFamily="sans-serif-medium" | ||
android:gravity="center_horizontal" | ||
android:maxLines="1" | ||
android:maxLines="2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should remove this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changes Applied. |
||
android:text="@string/onboarding_slide_3_title" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same previous comment applies to this code too.
Remove maxLines attribute.
Also, please re-generate screenshots and update PR description just to be sure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noted.