mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-02 20:49:10 +00:00
fix edit token page
minor fixes
This commit is contained in:
parent
be4e0d6ac8
commit
c5f5d1dd4d
2 changed files with 10 additions and 8 deletions
lib/src/screens
|
@ -187,7 +187,6 @@ class _DashboardPageView extends BasePage {
|
|||
int get initialPage => dashboardViewModel.shouldShowMarketPlaceInDashboard ? 1 : 0;
|
||||
ObservableList<Widget> pages = ObservableList<Widget>();
|
||||
bool _isEffectsInstalled = false;
|
||||
StreamSubscription<bool>? _onInactiveSub;
|
||||
|
||||
@override
|
||||
Widget body(BuildContext context) {
|
||||
|
@ -275,7 +274,7 @@ class _DashboardPageView extends BasePage {
|
|||
}
|
||||
|
||||
void _setEffects(BuildContext context) async {
|
||||
if (_isEffectsInstalled) {
|
||||
if (_isEffectsInstalled || !context.mounted) {
|
||||
return;
|
||||
}
|
||||
if (dashboardViewModel.shouldShowMarketPlaceInDashboard) {
|
||||
|
@ -305,11 +304,9 @@ class _DashboardPageView extends BasePage {
|
|||
_showHavenPopup(context);
|
||||
|
||||
var needToPresentYat = false;
|
||||
var isInactive = false;
|
||||
|
||||
_onInactiveSub = rootKey.currentState?.isInactive.listen(
|
||||
rootKey.currentState?.isInactive.listen(
|
||||
(inactive) {
|
||||
isInactive = inactive;
|
||||
|
||||
if (needToPresentYat) {
|
||||
Future<void>.delayed(Duration(milliseconds: 500)).then(
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:cake_wallet/src/widgets/standard_list.dart';
|
||||
import 'package:cake_wallet/src/widgets/standard_switch.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
@ -30,7 +29,13 @@ class SettingsSwitcherCell extends StandardListRow {
|
|||
height: 56,
|
||||
padding: EdgeInsets.only(left: 12, right: 12),
|
||||
child: TextButton(
|
||||
onPressed: () => onValueChange?.call(context, !value),
|
||||
onPressed: () {
|
||||
if (onTap != null) {
|
||||
onTap!.call(context);
|
||||
} else {
|
||||
onValueChange?.call(context, !value);
|
||||
}
|
||||
},
|
||||
style: ButtonStyle(
|
||||
//backgroundColor: MaterialStateProperty.all(Theme.of(context).cardColor),
|
||||
shape: MaterialStateProperty.all(
|
||||
|
@ -45,7 +50,7 @@ class SettingsSwitcherCell extends StandardListRow {
|
|||
children: <Widget>[
|
||||
if (leading != null) leading,
|
||||
buildCenter(context, hasLeftOffset: leading != null),
|
||||
if (trailing != null) trailing,
|
||||
trailing,
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue