diff --git a/lib/ui/widgets/fifth_screen/export_dialog.dart b/lib/ui/widgets/fifth_screen/export_dialog.dart index df1fa33f4685caee5cec0cf6839e0e886bb03834..e0ba1f0ccb42c05cc6d083f269eea4d2e1f11134 100644 --- a/lib/ui/widgets/fifth_screen/export_dialog.dart +++ b/lib/ui/widgets/fifth_screen/export_dialog.dart @@ -49,7 +49,8 @@ class _ExportDialogState extends State<ExportDialog> { ), Flexible( child: PatternLock( - selectedColor: Colors.amber, + selectedColor: selectedPatternLock(context), + notSelectedColor: notSelectedPatternLock(context), pointRadius: 12, onInputComplete: (List<int> input) { if (input.length < 3) { diff --git a/lib/ui/widgets/fifth_screen/import_dialog.dart b/lib/ui/widgets/fifth_screen/import_dialog.dart index 72580713358430b138a4cc50a40bde2115135f30..7065e5d1cef4ef1167fd226daf54ae6c3da44d78 100644 --- a/lib/ui/widgets/fifth_screen/import_dialog.dart +++ b/lib/ui/widgets/fifth_screen/import_dialog.dart @@ -61,7 +61,8 @@ class _ImportDialogState extends State<ImportDialog> { ), Flexible( child: PatternLock( - selectedColor: Colors.red, + selectedColor: selectedPatternLock(context), + notSelectedColor: notSelectedPatternLock(context), pointRadius: 8, fillPoints: true, onInputComplete: (List<int> pattern) async {