Issue#4 Add scrolling to recyclerview so elements can be verified safely
This commit is contained in:
parent
fa1fc49d0b
commit
fc32f1c7cd
7 changed files with 58 additions and 36 deletions
|
|
@ -17,7 +17,9 @@ object ContentData {
|
|||
val contentSuccess: List<Content> = listOf(
|
||||
Content(ContentId("1"), "title_1", "says_1", ImageUrl("img_1")),
|
||||
Content(ContentId("2"), "title_2", "says_2", ImageUrl("img_2")),
|
||||
Content(ContentId("3"), "title_3", "says_3", ImageUrl("img_3"))
|
||||
Content(ContentId("3"), "title_3", "says_3", ImageUrl("img_3")),
|
||||
Content(ContentId("4"), "title_4", "says_4", ImageUrl("img_4")),
|
||||
Content(ContentId("5"), "title_5", "says_5", ImageUrl("img_5"))
|
||||
)
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -16,5 +16,17 @@
|
|||
"title": "title_3",
|
||||
"says": "says_3",
|
||||
"image": "img_3"
|
||||
},
|
||||
{
|
||||
"id": "4",
|
||||
"title": "title_4",
|
||||
"says": "says_4",
|
||||
"image": "img_4"
|
||||
},
|
||||
{
|
||||
"id": "5",
|
||||
"title": "title_5",
|
||||
"says": "says_5",
|
||||
"image": "img_5"
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue