File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ class InAppMessengerWidget extends InheritedWidget {
3737
3838 Future <void > showIfAppropriate (InAppMessageTrigger reason) async {
3939 final context = navigatorKey.currentState! .overlay! .context;
40+ ScaffoldMessenger .of (context)
41+ ..removeCurrentMaterialBanner ()
42+ ..showMaterialBanner (_buildMaterialBanner ('iamAutofillDisabled' , context));
43+ return ;
4044 final interactionCubit = BlocProvider .of <InteractionCubit >(context);
4145 final potentialMessagesPrioritised = [];
4246 if (reason == InAppMessageTrigger .entryChanged) {
@@ -93,7 +97,7 @@ class InAppMessengerWidget extends InheritedWidget {
9397 final completed = await PRCSignupPromptDialog ().show (context);
9498 if (completed ?? false ) {
9599 await appSettings.iamEmailSignupSuppressUntil (DateTime (2122 ));
96- sm.hideCurrentMaterialBanner ();
100+ sm.hideCurrentMaterialBanner (); //removeCurrentMaterialBanner?
97101 }
98102 },
99103 child: Text (str.alertYesPlease.toUpperCase ()),
Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ class _SettingsWidgetState extends State<SettingsWidget> with TraceableClientMix
296296 ),
297297 ),
298298 SwitchSettingsTile (
299+ activeColor: Theme .of (context).colorScheme.primary,
299300 settingKey: 'expandGroups' ,
300301 title: str.setGenShowSubgroups,
301302 defaultValue: true ,
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class _VaultPasswordCredentialsWidgetState extends State<VaultPasswordCredential
7070 Padding (
7171 padding: const EdgeInsets .all (16.0 ),
7272 child: Row (
73- crossAxisAlignment: CrossAxisAlignment .center ,
73+ crossAxisAlignment: CrossAxisAlignment .start ,
7474 children: [
7575 Expanded (
7676 child: TextFormField (
@@ -112,7 +112,7 @@ class _VaultPasswordCredentialsWidgetState extends State<VaultPasswordCredential
112112 ),
113113 ),
114114 Padding (
115- padding: const EdgeInsets .only (left: 16 ),
115+ padding: const EdgeInsets .only (left: 16 , top : 4 ),
116116 child: FilledButton (
117117 onPressed: () async {
118118 if (_formKey.currentState! .validate ()) {
You can’t perform that action at this time.
0 commit comments