This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
String name add in vertical #55
Comments
Hi, I also had the same issue with text being added vertically. Any solution for this by now? |
I was facing the same issue. I changed from ConstraintLayout to RelativeLayout and it worked fine. |
Same problem here. I am trying some workarounds |
@khandelwalp Thanks man. Worked for me too. <RelativeLayout //Previous was LinearLayout
android:id="@+id/event_ticket_purchase_step_view_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingStart="@dimen/padding_or_margin_micro"
android:paddingEnd="@dimen/padding_or_margin_micro"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar_default">
<com.shuhart.stepview.StepView
android:id="@+id/event_ticket_purchase_step_view" |
Nice, that solved. Thanks 👍 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
.steps(new ArrayList() {{
add("Ordered");
add("Packed");
add("Shipped");
add("Delivery");
}})
it show like
O
r
d
e
r
e
d
below circle
AND also
stepView.go(2, true);
selected circle text gone
The text was updated successfully, but these errors were encountered: