Skip to content

settings [nfc]: Suppress some new deprecation warnings #1562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/widgets/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ class _ThemeSetting extends StatelessWidget {
themeSetting: themeSettingOption,
zulipLocalizations: zulipLocalizations)),
value: themeSettingOption,
// TODO(#1545) stop using the deprecated members
// ignore: deprecated_member_use
groupValue: globalSettings.themeSetting,
// ignore: deprecated_member_use
onChanged: (newValue) => _handleChange(context, newValue)),
]);
}
Expand Down
2 changes: 2 additions & 0 deletions test/flutter_checks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -251,5 +251,7 @@ extension SwitchListTileChecks<T> on Subject<SwitchListTile> {
}

extension RadioListTileChecks<T> on Subject<RadioListTile<T>> {
// TODO(#1545) stop using the deprecated member
// ignore: deprecated_member_use
Subject<bool> get checked => has((x) => x.checked, 'checked');
}