mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-30 05:37:43 +00:00
41 lines
1.6 KiB
Kotlin
41 lines
1.6 KiB
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Dmitry Yudin <dgyudin@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
package org.kde.kdeconnect.UserInterface.compose
|
|
|
|
import androidx.compose.foundation.layout.RowScope
|
|
import androidx.compose.material.icons.Icons
|
|
import androidx.compose.material.icons.automirrored.filled.ArrowBack
|
|
import androidx.compose.material.icons.filled.ArrowBack
|
|
import androidx.compose.material3.*
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.graphics.vector.ImageVector
|
|
import androidx.compose.ui.res.stringResource
|
|
import org.kde.kdeconnect_tp.R
|
|
|
|
@OptIn(ExperimentalMaterial3Api::class)
|
|
@Composable
|
|
fun KdeTopAppBar(
|
|
title: String = stringResource(R.string.kde_connect),
|
|
navIcon: ImageVector = Icons.AutoMirrored.Filled.ArrowBack,
|
|
navIconDescription: String = "",
|
|
navIconOnClick: () -> Unit, // = { onBackPressedDispatcher.onBackPressed() }
|
|
actions: @Composable (RowScope.() -> Unit) = {},
|
|
) {
|
|
TopAppBar(
|
|
navigationIcon = {
|
|
IconButton(onClick = navIconOnClick, content = { Icon(navIcon, navIconDescription) })
|
|
},
|
|
title = { Text(title,
|
|
// Commented for now because the MDC and androidx toolbars don't set this either
|
|
// https://github.com/material-components/material-components-android/issues/4073
|
|
// https://github.com/androidx/androidx/blob/androidx-main/appcompat/appcompat/src/main/res/layout/abc_action_bar_title_item.xml
|
|
// modifier = Modifier.semantics { heading() }
|
|
) },
|
|
actions = actions
|
|
)
|
|
}
|