Add notes to set

This commit is contained in:
Hafiz 2022-05-14 22:15:58 -04:00
parent f89847feea
commit 3ab122883c
2 changed files with 9 additions and 0 deletions

View file

@ -26,4 +26,12 @@
android:gravity="center"
android:layout_marginTop="14dp"
android:layout_marginBottom="4dp"/>
<TextView
android:id="@+id/notesTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Body2"
android:textColor="@color/text_ternary"
tools:text="These are the notes"
android:gravity="center"/>
</merge>

View file

@ -28,5 +28,6 @@ class PurchaseDialogCustomizationSetContent(context: Context) : PurchaseDialogCo
imageView.layoutParams = FlexboxLayout.LayoutParams(76.dpToPx(context), 76.dpToPx(context))
binding.imageViewWrapper.addView(imageView)
}
binding.notesTextView.text = item.notes
}
}