Skip to content

Commit

Permalink
improved video player behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Dec 31, 2022
1 parent 7731620 commit b99fce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/androidMain/res/layout/exoplayer_controls.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
android:textStyle="bold"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:layout_marginBottom="48dp"
android:textColor="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class VideoScreenComponent(

private val scope = coroutineScope(CommonDispatcher.Main + SupervisorJob())
override var forwardListener: (() -> Unit)? = null
override var playListener: (() -> Unit)? = null
override var playPauseListener: (() -> Unit)? = null
override var rewindListener: (() -> Unit)? = null
override var seekListener: ((Long) -> Unit)? = null
Expand Down

0 comments on commit b99fce0

Please sign in to comment.