added midsection
This commit is contained in:
parent
853a09866a
commit
3fb8b08cb4
1 changed files with 7 additions and 0 deletions
|
@ -95,6 +95,8 @@ abstract class AbstractSessionScreen {
|
|||
fontSize = 30.sp
|
||||
)
|
||||
|
||||
MidSection()
|
||||
|
||||
Box(
|
||||
contentAlignment = Alignment.Center, modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
|
@ -121,6 +123,11 @@ abstract class AbstractSessionScreen {
|
|||
@Composable
|
||||
abstract fun motivationString(): String
|
||||
|
||||
@Composable
|
||||
open fun MidSection() {
|
||||
// Default has no midsection, unless overwritten.
|
||||
}
|
||||
|
||||
abstract fun callMediaPlayer()
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue