Menu Scope
    Functions
Link copied to clipboard
                  A Menu to change the spoken language of the stream.
Link copied to clipboard
                  Close the currently open menu.
Link copied to clipboard
                  A Menu to change the spoken language and subtitles of the stream.
Link copied to clipboard
                  fun MenuScope.LanguageMenuButton(modifier: Modifier = Modifier, contentPadding: PaddingValues = PaddingValues(0.dp), content: @Composable () -> Unit = {
        Icon(
            painter = painterResource(id = R.drawable.language),
            contentDescription = stringResource(R.string.theoplayer_ui_menu_language)
        )
    })
A button that opens the language menu.
Link copied to clipboard
                  The compact menu contents of the LanguageMenu.
Link copied to clipboard
                  The expanded menu contents of the LanguageMenu.
Link copied to clipboard
                  fun MenuScope.Menu(modifier: Modifier = Modifier, title: @Composable () -> Unit, backIcon: @Composable () -> Unit = {
        Icon(
            Icons.AutoMirrored.Rounded.ArrowBack,
            contentDescription = stringResource(R.string.theoplayer_ui_btn_back)
        )
    }, content: @Composable () -> Unit)
A menu that can be opened on top of the player.
Link copied to clipboard
                  Open a new submenu.
Link copied to clipboard
                  A Menu to change the playback rate of the player.
Link copied to clipboard
                  A Menu to change the video quality of the stream.
Link copied to clipboard
                  A Menu to change the settings of the player, such as the video quality or the playback rate.
Link copied to clipboard
                  fun MenuScope.SettingsMenuButton(modifier: Modifier = Modifier, contentPadding: PaddingValues = PaddingValues(0.dp), content: @Composable () -> Unit = {
        Icon(
            Icons.Rounded.Settings,
            contentDescription = stringResource(R.string.theoplayer_ui_menu_settings)
        )
    })
A button that opens the settings menu.
Link copied to clipboard
                  A Menu to change the subtitles of the stream.