Skip to content

Commit

Permalink
fix issue 1040
Browse files Browse the repository at this point in the history
Transaction amount text Direction changed to LTR.
Transaction amount pinned to end of view
  • Loading branch information
ycohen-dev committed Oct 17, 2020
1 parent ac5e666 commit b0f7c41
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/src/main/res/layout/list_item_transaction.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,17 @@
/>
<TextView
android:id="@+id/transaction_amount"
android:gravity="right"
android:gravity="end"
android:layout_weight="4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:ellipsize="end"
android:fontFamily="@font/inter"
android:singleLine="true"
android:textSize="14sp"
android:textFontWeight="300" />
android:textFontWeight="300"
android:textAlignment="viewEnd"
android:textDirection="ltr"/>
</LinearLayout>

<LinearLayout
Expand Down

0 comments on commit b0f7c41

Please sign in to comment.