Skip to content

Commit

Permalink
(style): text weights
Browse files Browse the repository at this point in the history
  • Loading branch information
parodyBit committed Oct 8, 2024
1 parent a73bf78 commit 8bc257b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions lib/screens/preferences/export_xprv.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ class ExportXprvState extends State<ExportXprv> {
),
),
SizedBox(height: 16),
Text(localization.walletConfig01, style: theme.textTheme.bodyLarge),
Text(localization.walletConfig01, style: theme.textTheme.bodyMedium),
SizedBox(height: 8),
Text(localization.walletConfig02, style: theme.textTheme.bodyLarge),
Text(localization.walletConfig02, style: theme.textTheme.bodyMedium),
SizedBox(height: 8),
Text(localization.walletConfig03, style: theme.textTheme.bodyLarge),
Text(localization.walletConfig03, style: theme.textTheme.bodyMedium),
SizedBox(height: 16),
_exportWalletContent(context),
SizedBox(height: 24),
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/PaddedButton.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class PaddedButton extends StatelessWidget {
: Container(),
Text(text,
style: theme.textTheme.labelMedium!.copyWith(
fontSize: fontSize,
fontSize: 14,
fontWeight:
boldText ? FontWeight.bold : FontWeight.normal)),
Padding(padding: EdgeInsets.only(left: 8)),
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/verify_password.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class VerifyPasswordState extends State<VerifyPassword>
children: [
Text(
localization.passwordLabel,
style: theme.textTheme.titleSmall,
style: theme.textTheme.titleMedium,
),
SizedBox(height: 8),
InputLogin(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ class RecipientStepState extends State<RecipientStep>
PaddedButton(
padding: EdgeInsets.all(0),
text: localization.addTimelockLabel,
boldText: true,
boldText: false,
onPressed: () {
setState(() {
showAdvancedSettings = !showAdvancedSettings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TimelockInput extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(localization.timelock, style: theme.textTheme.titleSmall),
Text(localization.timelock, style: theme.textTheme.titleMedium),
SizedBox(width: 8),
Tooltip(
margin: EdgeInsets.all(8),
Expand Down

0 comments on commit 8bc257b

Please sign in to comment.