Browse Source

Merge 267211b4e6 into 02026d20c8

pull/3199/merge
dima.avdeev 3 months ago committed by GitHub
parent
commit
01e6f1512c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      examples/imageviewer/shared/src/commonMain/kotlin/example/imageviewer/ResourcePictures.kt
  2. BIN
      examples/imageviewer/shared/src/commonMain/resources/0-thumbnail.jpg
  3. BIN
      examples/imageviewer/shared/src/commonMain/resources/0.jpg

12
examples/imageviewer/shared/src/commonMain/kotlin/example/imageviewer/ResourcePictures.kt

@ -4,6 +4,18 @@ import example.imageviewer.model.GpsPosition
import example.imageviewer.model.PictureData
val resourcePictures = arrayOf(
PictureData.Resource(
resource = "0.jpg",
thumbnailResource = "0-thumbnail.jpg",
name = "KotlinConf 2023",
description = """
This photo was taken during KotlinConf 2023 using #ComposeMultiplatform running on ${getCurrentPlatform()}! 🎊
Let's build some stunning UIs! 🥳
https://jb.gg/compose
""".trimIndent(),
dateString = "13 Apr.",
gps = GpsPosition(52.3750666,4.8961794)
),
PictureData.Resource(
resource = "1.jpg",
thumbnailResource = "1-thumbnail.jpg",

BIN
examples/imageviewer/shared/src/commonMain/resources/0-thumbnail.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
examples/imageviewer/shared/src/commonMain/resources/0.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 KiB

Loading…
Cancel
Save