diff --git a/lib/views/groupsettingsview.dart b/lib/views/groupsettingsview.dart index 275b7636..e6659289 100644 --- a/lib/views/groupsettingsview.dart +++ b/lib/views/groupsettingsview.dart @@ -131,7 +131,7 @@ class _GroupSettingsViewState extends State { items: ConversationNotificationPolicy.values.map>((ConversationNotificationPolicy value) { return DropdownMenuItem( value: value, - child: Text(value.toName(context)), + child: Text(value.toName(context), style: settings.scaleFonts(defaultDropDownMenuItemTextStyle)), ); }).toList(), onChanged: (ConversationNotificationPolicy? newVal) { diff --git a/lib/views/peersettingsview.dart b/lib/views/peersettingsview.dart index 616609f7..e871315a 100644 --- a/lib/views/peersettingsview.dart +++ b/lib/views/peersettingsview.dart @@ -14,6 +14,7 @@ import 'package:provider/provider.dart'; import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import '../main.dart'; +import '../themes/opaque.dart'; /// Peer Settings View Provides way to Configure . class PeerSettingsView extends StatefulWidget { @@ -242,7 +243,7 @@ class _PeerSettingsViewState extends State { items: [AppLocalizations.of(context)!.savePeerHistory, AppLocalizations.of(context)!.dontSavePeerHistory].map>((String value) { return DropdownMenuItem( value: value, - child: Text(value), + child: Text(value, style: settings.scaleFonts(defaultDropDownMenuItemTextStyle)), ); }).toList())), ListTile( @@ -254,7 +255,7 @@ class _PeerSettingsViewState extends State { items: ConversationNotificationPolicy.values.map>((ConversationNotificationPolicy value) { return DropdownMenuItem( value: value, - child: Text(value.toName(context)), + child: Text(value.toName(context), style: settings.scaleFonts(defaultDropDownMenuItemTextStyle)), ); }).toList(), onChanged: (ConversationNotificationPolicy? newVal) {