Skip to content

Commit

Permalink
formatting fix (#1436)
Browse files Browse the repository at this point in the history
  • Loading branch information
oldGreg5 authored Dec 24, 2024
1 parent f7b9f2c commit f3f6858
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,40 +101,28 @@ class OnboardingPage {
expect(infoPartTaskPicture($), findsOneWidget);
break;
case RegistrationState.checkYourKeychain:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.createKeychain:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.keychainCreated:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.keychainRestoreInfo:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.keychainRestoreInput:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.keychainRestoreStart:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.keychainRestoreSuccess:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.mnemonicInput:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.mnemonicVerified:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.mnemonicWritedown:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.passwordInfo:
// TODO: Handle this case.
throw UnimplementedError();
case RegistrationState.passwordInput:
// TODO: Handle this case.
throw UnimplementedError();
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//wrapper that we should adapt to read actual i18n translations we use in the app
//wrapper that we should adapt to read actual i18n translations we use in app
//it will also support different locales once we have it
//right now this class is here so we can easily replace this implementation and know where
//now this is here so we can easily replace this implementation and know where
class T {
static String get(String key, {String? locale}) {
return key;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class InformationPanel extends StatelessWidget {
body: body,
),
const SizedBox(height: 12),
Expanded(key: const Key('PictureContainer'), child: Center(child: picture)),
Expanded(
key: const Key('PictureContainer'), child: Center(child: picture),),
const SizedBox(height: 12),
_Footer(
progress: progress,
Expand Down

0 comments on commit f3f6858

Please sign in to comment.