Skip to content

Commit

Permalink
Merge pull request #2559 from PaulWoitaschek/title_marquee
Browse files Browse the repository at this point in the history
Marquee the book title
  • Loading branch information
PaulWoitaschek committed Sep 22, 2024
2 parents bbc3412 + 19522f2 commit ffa16f8
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
package voice.playbackScreen.view

import androidx.compose.foundation.basicMarquee
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier

@Composable
internal fun AppBarTitle(title: String) {
Text(text = title)
Text(
text = title,
modifier = Modifier.basicMarquee(),
)
}

0 comments on commit ffa16f8

Please sign in to comment.