Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 🐛 Disable LitStarfieldContainer because of ImpellerValidatio… #1039

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/ui/views/authenticate/auto_lock_guard.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/localizations.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_vibrate/flutter_vibrate.dart';
import 'package:lit_starfield/lit_starfield.dart';
import 'package:logging/logging.dart';

part 'components/lock_mask_screen.dart';
Expand Down
4 changes: 2 additions & 2 deletions lib/ui/views/authenticate/components/lock_mask_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ class LockMask extends StatelessWidget {
),
),
),
const LitStarfieldContainer(
/*const LitStarfieldContainer(
backgroundDecoration: BoxDecoration(
color: Colors.transparent,
),
),
),*/
Image.asset(
'${ArchethicTheme.assetsFolder}logo_crystal.png',
width: 200,
Expand Down
10 changes: 6 additions & 4 deletions lib/ui/views/intro/layouts/intro_welcome.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import 'package:flutter_gen/gen_l10n/localizations.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:go_router/go_router.dart';
import 'package:lit_starfield/lit_starfield.dart';

import 'package:material_symbols_icons/symbols.dart';

class IntroWelcome extends ConsumerStatefulWidget {
Expand Down Expand Up @@ -85,8 +85,10 @@ class _IntroWelcomeState extends ConsumerState<IntroWelcome>

@override
Widget getSheetContent(BuildContext context, WidgetRef ref) {
return Stack(
return const Stack(
children: [
// TODO(reddwarf03): Follow https://github.com/flutter/flutter/issues/128885
/*
Opacity(
opacity: 0.8,
child: SizedBox(
Expand Down Expand Up @@ -116,8 +118,8 @@ class _IntroWelcomeState extends ConsumerState<IntroWelcome>
),
),
),
),
const _Main(),
),*/
_Main(),
],
);
}
Expand Down
6 changes: 2 additions & 4 deletions lib/ui/widgets/components/dialog.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/// SPDX-License-Identifier: AGPL-3.0-or-later
import 'package:aewallet/application/settings/settings.dart';
import 'package:aewallet/ui/themes/archethic_theme.dart';
import 'package:aewallet/ui/themes/archethic_theme_base.dart';
import 'package:aewallet/ui/themes/styles.dart';
import 'package:aewallet/ui/widgets/components/app_button.dart';
import 'package:aewallet/util/get_it_instance.dart';
Expand All @@ -14,7 +13,6 @@ import 'package:flutter_gen/gen_l10n/localizations.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_vibrate/flutter_vibrate.dart';
import 'package:go_router/go_router.dart';
import 'package:lit_starfield/lit_starfield.dart';

class AppDialogs {
static Future showConfirmDialog(
Expand Down Expand Up @@ -248,7 +246,7 @@ class AnimationLoadingOverlay extends ModalRoute<void> {
),
),
),
Opacity(
/*Opacity(
opacity: 0.8,
child: LitStarfieldContainer(
velocity: 0.2,
Expand All @@ -271,7 +269,7 @@ class AnimationLoadingOverlay extends ModalRoute<void> {
color: Colors.transparent,
),
),
),
),*/
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expand Down