-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathShareAssetMenuOption.kt
More file actions
52 lines (49 loc) · 1.8 KB
/
ShareAssetMenuOption.kt
File metadata and controls
52 lines (49 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Wire
* Copyright (C) 2024 Wire Swiss GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
package com.wire.android.ui.edit
import androidx.compose.runtime.Composable
import androidx.compose.ui.res.stringResource
import com.wire.android.R
import com.wire.android.ui.common.bottomsheet.MenuBottomSheetItem
import com.wire.android.ui.common.bottomsheet.MenuItemIcon
@Composable
fun ShareAssetMenuOption(onShareAsset: () -> Unit) {
MenuBottomSheetItem(
leading = {
MenuItemIcon(
id = R.drawable.ic_share_file,
contentDescription = stringResource(R.string.content_description_share_the_file),
)
},
title = stringResource(R.string.label_share),
onItemClick = onShareAsset
)
}
@Composable
fun SharePublicLinkMenuOption(onShareAsset: () -> Unit) {
MenuBottomSheetItem(
leading = {
MenuItemIcon(
id = com.wire.android.ui.common.R.drawable.ic_link_indicator,
contentDescription = stringResource(R.string.content_description_share_the_file),
)
},
title = stringResource(com.wire.android.feature.cells.R.string.public_link),
onItemClick = onShareAsset
)
}