Skip to content

Commit

Permalink
fix: dart formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thisissandipp committed Jul 30, 2024
1 parent f12f7f4 commit f7436d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/main_production.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void main() async {
final apiClient = SudokuDioClient(baseUrl: Env.apiBaseUrl);
final cacheClient = CacheClient();

final storageClient = LocalStorageClient(
final storageClient = LocalStorageClient(
plugin: await SharedPreferences.getInstance(),
);

Expand Down
2 changes: 1 addition & 1 deletion lib/puzzle/widgets/congrats_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CongratsDialog extends StatelessWidget {
@override
Widget build(BuildContext context) {
final l10n = context.l10n;

const gradient = LinearGradient(
colors: [
SudokuColors.darkPurple,
Expand Down
2 changes: 1 addition & 1 deletion test/storage/local_storage_client_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void main() {
group('clearPuzzleStore', () {
test('removes the data from the key', () {
final client = createSubject();

expect(client.clearPuzzleStore(), completes);
expect(client.getPuzzle(), emits(null));

Expand Down

0 comments on commit f7436d9

Please sign in to comment.