Compare commits
No commits in common. "8512d5432fec08b05aa742759c74683306a7dcaf" and "8d23b204398f5e6b6ac552f30ddfbe2190fe8308" have entirely different histories.
8512d5432f
...
8d23b20439
1 changed files with 8 additions and 15 deletions
|
|
@ -122,18 +122,15 @@ LaunchedEffect(isPlay, isPos) {
|
||||||
TopAppBar(
|
TopAppBar(
|
||||||
modifier = Modifier.height(55.dp).windowInsetsPadding(WindowInsets.statusBars), title = {
|
modifier = Modifier.height(55.dp).windowInsetsPadding(WindowInsets.statusBars), title = {
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier.fillMaxSize().verticalScroll(scrollState),
|
modifier = Modifier.fillMaxSize().verticalScroll(scrollState)
|
||||||
verticalArrangement = Arrangement.Center
|
|
||||||
) {
|
) {
|
||||||
Row {
|
Text(
|
||||||
Text(
|
songTitle,
|
||||||
songTitle,
|
modifier = Modifier.weight(1f, fill = true),
|
||||||
modifier = Modifier.weight(1f, fill = true),
|
maxLines = 1,
|
||||||
maxLines = 1,
|
softWrap = false,
|
||||||
softWrap = false,
|
overflow = TextOverflow.Ellipsis,
|
||||||
overflow = TextOverflow.Ellipsis,
|
)
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, navigationIcon = {
|
}, navigationIcon = {
|
||||||
IconButton(onClick = {
|
IconButton(onClick = {
|
||||||
|
|
@ -302,10 +299,6 @@ LaunchedEffect(isPlay, isPos) {
|
||||||
sharedScreenModel.reset()
|
sharedScreenModel.reset()
|
||||||
solfaScreenModel.loadFromFile(item.path)
|
solfaScreenModel.loadFromFile(item.path)
|
||||||
isSearchActive = false
|
isSearchActive = false
|
||||||
isPlayMid = false
|
|
||||||
isExpanded = false
|
|
||||||
sharedScreenModel.stopMidi()
|
|
||||||
sharedScreenModel.seekTo(0f)
|
|
||||||
})
|
})
|
||||||
HorizontalDivider()
|
HorizontalDivider()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue