Skip to content

Releases: ImaginativeShohag/Why-Not-Image-Carousel

2.1.0

01 Mar 18:17
2e238b4
Compare
Choose a tag to compare

2.0.6

10 Jan 19:51
45427d7
Compare
Choose a tag to compare

2.0.5

29 Sep 19:42
Compare
Choose a tag to compare

2.0.4

08 Aug 02:05
340a498
Compare
Choose a tag to compare

2.0.3

24 Jul 21:00
Compare
Choose a tag to compare

2.0.2

24 Jul 19:54
cf796a9
Compare
Choose a tag to compare

2.0.1

22 May 06:02
353d7c8
Compare
Choose a tag to compare

2.0.0

22 May 05:11
0e5e616
Compare
Choose a tag to compare

1.3.0

24 Mar 21:29
72991d0
Compare
Choose a tag to compare

Header field is added to the CarouselItem.

Examples:

// Kotlin
val headers = mutableMapOf<String, String>()
headers["header_key"] = "header_value"

val carouselItem1 = CarouselItem(
    imageUrl = "https://images.unsplash.com/photo-1549577434-d7615fd4ceac?w=1080",
    caption = "Photo by Jeremy Bishop on Unsplash",
    headers = headers
)
val carouselItem2 = CarouselItem(
    imageUrl = "https://images.unsplash.com/photo-1549577434-d7615fd4ceac?w=1080",
    headers = headers
)
// Java
Map<String, String> headers = new HashMap<>();
headers.put("header_key", "header_value");

CarouselItem carouselItem1 = new CarouselItem(
        "https://images.unsplash.com/photo-1549577434-d7615fd4ceac?w=1080",
        "Photo by Jeremy Bishop on Unsplash",
        headers
);

CarouselItem carouselItem2 = new CarouselItem(
        "https://images.unsplash.com/photo-1549577434-d7615fd4ceac?w=1080",
        headers
);

1.2.1

03 Feb 21:07
8172295
Compare
Choose a tag to compare

We move our library from jitpack.io to maven repository. So no need to add any repositories for using the library.

View binding added to the sample. Dependent libraries updated.