@@ -365,6 +365,7 @@ class _BiometricSettingWidgetState extends State<BiometricSettingWidget> {
365365 @override
366366 Widget build (BuildContext context) {
367367 final str = S .of (context);
368+ final theme = Theme .of (context);
368369 final quickUnlockSettings = [
369370 TextInputSettingsTile (
370371 title: str.automaticallySignInFor,
@@ -427,6 +428,7 @@ class _BiometricSettingWidgetState extends State<BiometricSettingWidget> {
427428 visible: ! KeeVaultPlatform .isIOS,
428429 replacement: Column (children: quickUnlockSettings),
429430 child: SwitchSettingsTile (
431+ activeColor: theme.colorScheme.inversePrimary,
430432 settingKey: 'biometrics-enabled' ,
431433 title: str.biometricSignIn,
432434 onChange: (value) async {
@@ -509,6 +511,7 @@ class _AutofillStatusWidgetState extends State<AutofillStatusWidget> {
509511 @override
510512 Widget build (BuildContext context) {
511513 final str = S .of (context);
514+ final theme = Theme .of (context);
512515
513516 return Column (
514517 children: [
@@ -552,6 +555,7 @@ class _AutofillStatusWidgetState extends State<AutofillStatusWidget> {
552555 Visibility (
553556 visible: widget.isEnabled && KeeVaultPlatform .isAndroid,
554557 child: SwitchSettingsTile (
558+ activeColor: theme.colorScheme.inversePrimary,
555559 settingKey: 'autofillServiceEnableSaving' ,
556560 title: str.offerToSave,
557561 defaultValue: true ,
@@ -569,6 +573,7 @@ class _AutofillStatusWidgetState extends State<AutofillStatusWidget> {
569573 visible:
570574 widget.isEnabled && KeeVaultPlatform .isAndroid && (_androidDeviceInfo? .version.sdkInt ?? 0 ) >= 31 ,
571575 child: SwitchSettingsTile (
576+ activeColor: theme.colorScheme.inversePrimary,
572577 settingKey: 'autofillServiceEnableIMEIntegration' ,
573578 title: 'Show in keyboard' ,
574579 subtitle: 'experimental feature' ,
0 commit comments