chore: Initial compose integration

This commit is contained in:
ziro 2024-01-11 15:56:05 +07:00
parent 6fc4d239e6
commit 4a78fbe0bc
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -0,0 +1,22 @@
package dev.yokai.presentation.extension
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.compose.ui.platform.ComposeView
import eu.kanade.tachiyomi.ui.base.controller.BaseController
class ExtensionDetailsController(bundle: Bundle? = null) : BaseController(bundle) {
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup,
savedViewState: Bundle?
): View {
return ComposeView(container.context).apply {
setContent {
// TODO
}
}
}
}