
* Uses Voyager for navigation. * Replaces every screen inside settings except category editor screen since it's called from several places. (cherry picked from commit 890f1a3c7b0f2ceefa86a77cb40c11567e2b5a46) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/ui/more/MoreController.kt # app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsMainController.kt
22 lines
592 B
Kotlin
22 lines
592 B
Kotlin
package exh.assets
|
|
|
|
import androidx.compose.ui.graphics.vector.ImageVector
|
|
import exh.assets.ehassets.AllAssets
|
|
import exh.assets.ehassets.EhLogo
|
|
import exh.assets.ehassets.Exh
|
|
import exh.assets.ehassets.MangadexLogo
|
|
import kotlin.collections.List as ____KtList
|
|
|
|
public object EhAssets
|
|
|
|
private var __AllAssets: ____KtList<ImageVector>? = null
|
|
|
|
public val EhAssets.AllAssets: ____KtList<ImageVector>
|
|
get() {
|
|
if (__AllAssets != null) {
|
|
return __AllAssets!!
|
|
}
|
|
__AllAssets = Exh.AllAssets + listOf(EhLogo, MangadexLogo)
|
|
return __AllAssets!!
|
|
}
|