File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets/send Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import androidx.compose.ui.text.font.FontWeight
2020import androidx.compose.ui.tooling.preview.Preview
2121import androidx.compose.ui.unit.dp
2222import to.bitkit.R
23+ import to.bitkit.ui.components.Caption13Up
2324import to.bitkit.viewmodels.SendEvent
2425import to.bitkit.viewmodels.SendUiState
2526import to.bitkit.ui.components.PrimaryButton
@@ -48,12 +49,8 @@ fun SendAddressScreen(
4849 val focusRequester = remember { FocusRequester () }
4950 LaunchedEffect (Unit ) { focusRequester.requestFocus() }
5051
51- Text (
52- text = stringResource(R .string.wallet__send_to),
53- style = MaterialTheme .typography.labelSmall,
54- fontWeight = FontWeight .Normal ,
55- )
56- Spacer (modifier = Modifier .height(4 .dp))
52+ Caption13Up (text = stringResource(R .string.wallet__send_to))
53+ Spacer (modifier = Modifier .height(16 .dp))
5754 TextField (
5855 placeholder = { Text (stringResource(R .string.address_placeholder)) },
5956 value = uiState.addressInput,
You can’t perform that action at this time.
0 commit comments