mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
default to easy mode and button size fix
This commit is contained in:
parent
733c81bf90
commit
b822519d58
2 changed files with 20 additions and 16 deletions
|
@ -393,21 +393,21 @@ class _PrivacyToggleState extends ConsumerState<PrivacyToggle> {
|
|||
}
|
||||
}
|
||||
|
||||
class ContinueButton extends StatelessWidget {
|
||||
const ContinueButton(
|
||||
{Key? key,
|
||||
required this.isDesktop,
|
||||
required this.isSettings,
|
||||
required this.isEasy})
|
||||
: super(key: key);
|
||||
class ContinueButton extends ConsumerWidget {
|
||||
const ContinueButton({
|
||||
Key? key,
|
||||
required this.isDesktop,
|
||||
required this.isSettings,
|
||||
required this.isEasy,
|
||||
}) : super(key: key);
|
||||
|
||||
final bool isDesktop;
|
||||
final bool isSettings;
|
||||
final bool isEasy;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return isDesktop
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
return !isDesktop
|
||||
? TextButton(
|
||||
style: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
|
@ -416,10 +416,11 @@ class ContinueButton extends StatelessWidget {
|
|||
print("Output of isEasy:");
|
||||
print(isEasy);
|
||||
|
||||
Prefs.instance.externalCalls = isEasy;
|
||||
if (!isSettings) {
|
||||
Navigator.of(context).pushNamed(CreatePasswordView.routeName);
|
||||
}
|
||||
ref.read(prefsChangeNotifierProvider).externalCalls = isEasy;
|
||||
|
||||
!isSettings
|
||||
? Navigator.of(context).pushNamed(CreatePinView.routeName)
|
||||
: Navigator.of(context).pop();
|
||||
},
|
||||
child: Text(
|
||||
!isSettings ? "Continue" : "Save changes",
|
||||
|
@ -437,10 +438,11 @@ class ContinueButton extends StatelessWidget {
|
|||
print("Output of isEasy:");
|
||||
print(isEasy);
|
||||
|
||||
Prefs.instance.externalCalls = isEasy;
|
||||
ref.read(prefsChangeNotifierProvider).externalCalls = isEasy;
|
||||
|
||||
!isSettings
|
||||
? Navigator.of(context).pushNamed(CreatePinView.routeName)
|
||||
? Navigator.of(context)
|
||||
.pushNamed(CreatePasswordView.routeName)
|
||||
: Navigator.of(context).pop();
|
||||
},
|
||||
child: Text(
|
||||
|
|
|
@ -546,7 +546,9 @@ class Prefs extends ChangeNotifier {
|
|||
boxName: DB.boxNamePrefs, key: "startupWalletId") as String?;
|
||||
}
|
||||
|
||||
bool _externalCalls = false;
|
||||
// incognito mode disabled
|
||||
|
||||
bool _externalCalls = true;
|
||||
|
||||
bool get externalCalls => _externalCalls;
|
||||
|
||||
|
|
Loading…
Reference in a new issue