Skip to content

Commit 47d8039

Browse files
committed
fix: add drawer icon
1 parent 769b16a commit 47d8039

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import to.bitkit.ui.components.IncomingTransfer
3636
import to.bitkit.ui.components.SecondaryButton
3737
import to.bitkit.ui.components.TabBar
3838
import to.bitkit.ui.scaffold.AppTopBar
39+
import to.bitkit.ui.scaffold.DrawerNavIcon
3940
import to.bitkit.ui.scaffold.ScreenColumn
4041
import to.bitkit.ui.screens.wallets.activity.components.ActivityListGrouped
4142
import to.bitkit.ui.screens.wallets.activity.utils.previewLightningActivityItems
@@ -77,14 +78,17 @@ fun SpendingWalletScreen(
7778
contentScale = ContentScale.Fit,
7879
modifier = Modifier
7980
.align(Alignment.TopEnd)
80-
.offset(x = (155).dp, y = (-35).dp)
81+
.offset(x = (155).dp)
8182
.size(330.dp)
8283
)
8384
ScreenColumn(noBackground = true) {
8485
AppTopBar(
8586
titleText = stringResource(R.string.wallet__spending__title),
8687
icon = painterResource(R.drawable.ic_ln_circle),
8788
onBackClick = onBackClick,
89+
actions = {
90+
DrawerNavIcon()
91+
}
8892
)
8993
Column(
9094
modifier = Modifier.padding(horizontal = 16.dp)

0 commit comments

Comments
 (0)