-
Notifications
You must be signed in to change notification settings - Fork 553
fix: Feedback - button and crashes #2185
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
Conversation
Updated |
android:id="@+id/feedbackBtn" | ||
style="@style/ThreeDS2TextButtonStyle" |
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.
What's this?
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.
For UI.
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.
What does it do which is not in default style?
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.
It shows elevation and boundary line. Even if a transparent background is set.
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.
Merging this. But I see no documentation for this
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.
Found it. It is from the stripe library.
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.
Wow. Please revert it in the next development iteration ASAP.
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.
Wow. Please revert it in the next development iteration ASAP.
Sure 👍
@@ -555,14 +555,15 @@ | |||
android:visibility="gone" | |||
tools:visibility="visible"/> | |||
|
|||
<Button | |||
<com.google.android.material.button.MaterialButton |
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.
Why? It happens automatically when android inflates the layout
app/src/main/res/values/strings.xml
Outdated
@@ -356,11 +356,11 @@ | |||
<string name="and_i_m_up_for">And I\'m up for</string> | |||
<string name="what_type">What Sounds good?</string> | |||
<string name="feedback">Feedback</string> | |||
<string name="write_feedback">Write Feedback</string> | |||
<string name="write_feedback">WRITE A FEEDBACK</string> |
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.
Revert
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.
Okay. I just follow the play store for UI.
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.
Button text is automatically capitalized
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.
Yes right sorry. I have changed it for text view.
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.
Not capitalizing with that style. Added an extra attribute.
Updated |
@@ -557,12 +557,14 @@ | |||
|
|||
<Button | |||
android:id="@+id/feedbackBtn" | |||
style="@style/ThreeDS2TextButtonStyle" | |||
android:textAllCaps="true" | |||
android:textAlignment="center" |
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.
Unneeded
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.
removed
Fixes #2175
Fixes #2184