Skip to content

Commit 265ed4e

Browse files
committed
feat: activity screen nav drawer
1 parent b2d79bd commit 265ed4e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/activity/AllActivityScreen.kt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import to.bitkit.R
2828
import to.bitkit.ui.appViewModel
2929
import to.bitkit.ui.components.Sheet
3030
import to.bitkit.ui.scaffold.AppTopBar
31+
import to.bitkit.ui.scaffold.DrawerNavIcon
3132
import to.bitkit.ui.screens.wallets.activity.components.ActivityListFilter
3233
import to.bitkit.ui.screens.wallets.activity.components.ActivityListGrouped
3334
import to.bitkit.ui.screens.wallets.activity.components.ActivityTab
@@ -97,7 +98,13 @@ private fun AllActivityScreenContent(
9798
Column(
9899
modifier = Modifier.screen()
99100
) {
100-
AppTopBar(stringResource(R.string.wallet__activity_all), onBackClick)
101+
AppTopBar(
102+
titleText = stringResource(R.string.wallet__activity_all),
103+
onBackClick = onBackClick,
104+
actions = {
105+
DrawerNavIcon()
106+
},
107+
)
101108

102109
ActivityListFilter(
103110
searchText = searchText,

0 commit comments

Comments
 (0)