Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkbee1 committed Jun 28, 2024
1 parent 8a0833e commit 0efe445
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class _CongratulationsAccountCreationViewState
),
Text(message,
textAlign: TextAlign.center,
style: Theme.of(context).textTheme.headlineSmall),
style: Theme.of(context).textTheme.headlineSmall,),
const SizedBox(
height: Sizes.space3XLarge,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class _ManageAccountsPageState extends State<ManageAccountsPage> {
physics: const NeverScrollableScrollPhysics(),
itemBuilder: (context, i) {
return Padding(
padding: const EdgeInsets.all(8.0),
padding: const EdgeInsets.all(8),
child: ManageAccountsItem(
cryptoAccountData: state.cryptoAccount.data[i],
listIndex: i,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DraftTypeWidget extends StatelessWidget {
color: Theme.of(context).colorScheme.primary,
),
),
const DividerForRadioList()
const DividerForRadioList(),
],
);
},
Expand Down
4 changes: 2 additions & 2 deletions lib/pin_code/cubit/pin_code_view_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ class PinCodeViewCubit extends Cubit<PinCodeViewState> {
}

void setEnteredPasscode(
String enteredPasscode, PinCodeErrors newPinCodeError) {
String enteredPasscode, PinCodeErrors newPinCodeError,) {
emit(
state.copyWith(
enteredPasscode: enteredPasscode, pinCodeError: newPinCodeError),
enteredPasscode: enteredPasscode, pinCodeError: newPinCodeError,),
);
}

Expand Down
1 change: 0 additions & 1 deletion lib/pin_code/widgets/pin_code_widget.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'package:altme/app/app.dart';
import 'package:altme/dashboard/profile/cubit/profile_cubit.dart';
import 'package:altme/l10n/l10n.dart';
import 'package:altme/pin_code/pin_code.dart';
import 'package:flutter/material.dart';
Expand Down

0 comments on commit 0efe445

Please sign in to comment.