mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
e7d6dfff53
* Remove MotionLayout and add full screen dialog for enlarged cover * Address some of the review comments
13 lines
358 B
Kotlin
13 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)
|
|
}
|
|
}
|