Skip to content

Releases: ImaginativeShohag/Why-Not-Image-Carousel

v2.1.1

22 Jun 20:30
f9c1d9e

Choose a tag to compare

What's Changed

  • Upgrade dependencies to the latest version.
  • Add live documentation. (Website)
  • Fixed Grammatical Error in Library Documentation by @fin1te in #97

New Contributors

Full Changelog: v2.1.0...v2.1.1

Change Log History

2.1.0

01 Mar 18:17
2e238b4

Choose a tag to compare

2.0.6

10 Jan 19:51
45427d7

Choose a tag to compare

2.0.5

29 Sep 19:42

Choose a tag to compare

2.0.4

08 Aug 02:05
340a498

Choose a tag to compare

2.0.3

24 Jul 21:00

Choose a tag to compare

2.0.2

24 Jul 19:54
cf796a9

Choose a tag to compare

2.0.1

22 May 06:02
353d7c8

Choose a tag to compare

2.0.0

22 May 05:11
0e5e616

Choose a tag to compare

1.3.0

24 Mar 21:29
72991d0

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
);