* Remove MotionLayout and add full screen dialog for enlarged cover * Address some of the review comments
14 lines
358 B
Kotlin
14 lines
358 B
Kotlin
package eu.kanade.tachiyomi.widget
|
|
|
|
import android.content.Context
|
|
import android.view.View
|
|
import androidx.appcompat.app.AppCompatDialog
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
class TachiyomiFullscreenDialog(context: Context, view: View) : AppCompatDialog(context, R.style.ThemeOverlay_Tachiyomi_Dialog_Fullscreen) {
|
|
|
|
init {
|
|
setContentView(view)
|
|
}
|
|
}
|