mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 11:16:36 +00:00
changed desktop textbox fontsize
This commit is contained in:
parent
43deb9f81f
commit
543f9631d8
3 changed files with 7 additions and 1 deletions
|
@ -272,6 +272,8 @@ class _RestoreFromFileViewState extends State<CreateBackupView> {
|
||||||
passwordFocusNode,
|
passwordFocusNode,
|
||||||
context,
|
context,
|
||||||
).copyWith(
|
).copyWith(
|
||||||
|
labelStyle:
|
||||||
|
isDesktop ? STextStyles.fieldLabel(context) : null,
|
||||||
suffixIcon: UnconstrainedBox(
|
suffixIcon: UnconstrainedBox(
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
|
@ -403,6 +405,8 @@ class _RestoreFromFileViewState extends State<CreateBackupView> {
|
||||||
passwordRepeatFocusNode,
|
passwordRepeatFocusNode,
|
||||||
context,
|
context,
|
||||||
).copyWith(
|
).copyWith(
|
||||||
|
labelStyle:
|
||||||
|
isDesktop ? STextStyles.fieldLabel(context) : null,
|
||||||
suffixIcon: UnconstrainedBox(
|
suffixIcon: UnconstrainedBox(
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
|
|
|
@ -245,6 +245,8 @@ class _RestoreFromFileViewState extends ConsumerState<RestoreFromFileView> {
|
||||||
passwordFocusNode,
|
passwordFocusNode,
|
||||||
context,
|
context,
|
||||||
).copyWith(
|
).copyWith(
|
||||||
|
labelStyle:
|
||||||
|
isDesktop ? STextStyles.fieldLabel(context) : null,
|
||||||
suffixIcon: UnconstrainedBox(
|
suffixIcon: UnconstrainedBox(
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
|
|
|
@ -269,7 +269,7 @@ class _BackupRestoreSettings extends ConsumerState<BackupRestoreSettings> {
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.all(
|
padding: const EdgeInsets.all(
|
||||||
10,
|
10,
|
||||||
),
|
),
|
||||||
child: restoreBackup
|
child: restoreBackup
|
||||||
|
|
Loading…
Reference in a new issue