minor changes

This commit is contained in:
Bnyro 2022-05-24 10:42:54 +02:00
parent 403d2dd595
commit 9f69da13a6
2 changed files with 4 additions and 3 deletions

View File

@ -9,11 +9,12 @@ data class Comment(
val commentText: String?, val commentText: String?,
val commentedTime: String?, val commentedTime: String?,
val commentorUrl: String?, val commentorUrl: String?,
val repliesPage: String?,
val hearted: Boolean?, val hearted: Boolean?,
val likeCount: Int?, val likeCount: Int?,
val pinned: Boolean?, val pinned: Boolean?,
val thumbnail: String?, val thumbnail: String?,
val verified: Boolean? val verified: Boolean?
) { ) {
constructor() : this("", "", "", "", "", null, 0, null, "", null) constructor() : this("", "", "", "", "", "", null, 0, null, "", null)
} }

View File

@ -37,9 +37,9 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="10dp" android:layout_marginStart="10dp"
android:layout_marginTop="10dp" android:layout_marginTop="10dp"
android:layout_marginEnd="28dp" android:layout_marginEnd="30dp"
android:text="Video Title" android:text="Video Title"
android:textSize="20sp" /> android:textSize="18sp" />
<ImageView <ImageView