File tree Expand file tree Collapse file tree 7 files changed +17
-0
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets Expand file tree Collapse file tree 7 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import androidx.compose.foundation.layout.Row
88import androidx.compose.foundation.layout.Spacer
99import androidx.compose.foundation.layout.fillMaxHeight
1010import androidx.compose.foundation.layout.fillMaxWidth
11+ import androidx.compose.foundation.layout.height
1112import androidx.compose.foundation.layout.padding
1213import androidx.compose.foundation.layout.wrapContentHeight
1314import androidx.compose.runtime.Composable
@@ -39,6 +40,8 @@ fun TagSelectorSheet(
3940 ) {
4041 SheetTopBar (stringResource(R .string.wallet__tags_filter_title))
4142
43+ Spacer (modifier = Modifier .height(32 .dp))
44+
4245 FlowRow (
4346 modifier = Modifier
4447 .fillMaxWidth()
Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ fun ReceiveQRScreen(
8181 ) {
8282 SheetTopBar (stringResource(R .string.title_receive))
8383
84+ Spacer (Modifier .height(32 .dp))
85+
8486 val navController = rememberNavController()
8587 NavHost (
8688 navController = navController,
Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ fun AddTagContent(
7070 onBack()
7171 }
7272
73+ Spacer (Modifier .height(32 .dp))
74+
7375 Column (
7476 modifier = Modifier
7577 .padding(horizontal = 16 .dp)
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ fun SendAddressScreen(
4040 onEvent(SendEvent .AddressReset )
4141 onBack()
4242 }
43+
44+ Spacer (Modifier .height(32 .dp))
45+
4346 Column (
4447 modifier = Modifier .padding(horizontal = 16 .dp)
4548 ) {
Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ fun SendAmountScreen(
4949 onEvent(SendEvent .AmountReset )
5050 onBack()
5151 }
52+
53+ Spacer (Modifier .height(32 .dp))
54+
5255 Column (
5356 modifier = Modifier .padding(horizontal = 16 .dp)
5457 ) {
Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ fun SendAndReviewScreen(
7070 SheetTopBar (stringResource(R .string.title_send_review)) {
7171 onBack()
7272 }
73+
74+ Spacer (Modifier .height(32 .dp))
75+
7376 Column (
7477 modifier = Modifier
7578 .padding(horizontal = 16 .dp)
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ private fun SendOptionsContent(
136136 .padding(horizontal = 16 .dp)
137137 ) {
138138 SheetTopBar (stringResource(R .string.title_send))
139+ Spacer (Modifier .height(32 .dp))
139140 Caption13Up (text = stringResource(R .string.wallet__send_to))
140141 Spacer (modifier = Modifier .height(16 .dp))
141142
You can’t perform that action at this time.
0 commit comments