All Downloads are FREE. Search and download functionalities are using the official Maven repository.

iosMain.com.softartdev.themepref.MR.kt Maven / Gradle / Ivy

Go to download

Kotlin Multiplatform library for easy switching Dark/Light Material themes on Compose.

There is a newer version: 0.5.5
Show newest version
package com.softartdev.themepref

import dev.icerock.moko.graphics.Color
import dev.icerock.moko.resources.AssetResource
import dev.icerock.moko.resources.ColorResource
import dev.icerock.moko.resources.FileResource
import dev.icerock.moko.resources.FontResource
import dev.icerock.moko.resources.ImageResource
import dev.icerock.moko.resources.PluralsResource
import dev.icerock.moko.resources.ResourceContainer
import dev.icerock.moko.resources.StringResource
import dev.icerock.moko.resources.utils.loadableBundle
import kotlin.String
import platform.Foundation.NSBundle

public actual object MR {
  private val bundle: NSBundle by lazy { NSBundle.loadableBundle("com.softartdev.themepref.MR") }

  private val contentHash: String = "efb6564c13ff9ffa49f237c1d995212e"

  public actual object strings : ResourceContainer {
    public actual val material_theme_prefs: StringResource = StringResource(resourceId =
        "material_theme_prefs", bundle = bundle)

    public actual val settings: StringResource = StringResource(resourceId = "settings", bundle =
        bundle)

    public actual val theme: StringResource = StringResource(resourceId = "theme", bundle = bundle)

    public actual val choose_theme: StringResource = StringResource(resourceId = "choose_theme",
        bundle = bundle)

    public actual val system_default: StringResource = StringResource(resourceId = "system_default",
        bundle = bundle)

    public actual val light: StringResource = StringResource(resourceId = "light", bundle = bundle)

    public actual val dark: StringResource = StringResource(resourceId = "dark", bundle = bundle)

    public actual val cancel: StringResource = StringResource(resourceId = "cancel", bundle =
        bundle)

    public actual val set_by_byttery_saver: StringResource = StringResource(resourceId =
        "set_by_byttery_saver", bundle = bundle)

    public actual val error_title: StringResource = StringResource(resourceId = "error_title",
        bundle = bundle)

    public actual val ok: StringResource = StringResource(resourceId = "ok", bundle = bundle)

    public override val nsBundle: NSBundle = bundle
  }

  public actual object plurals : ResourceContainer {
    public override val nsBundle: NSBundle = bundle
  }

  public actual object images : ResourceContainer {
    public override val nsBundle: NSBundle = bundle
  }

  public actual object fonts : ResourceContainer {
    public override val nsBundle: NSBundle = bundle
  }

  public actual object files : ResourceContainer {
    public override val nsBundle: NSBundle = bundle
  }

  public actual object colors : ResourceContainer {
    public override val nsBundle: NSBundle = bundle
  }

  public actual object assets : ResourceContainer {
    public override val nsBundle: NSBundle = bundle
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy