accessibility work

This commit is contained in:
Christien Rioux 2025-05-25 13:09:41 -04:00
parent be8014c97a
commit de691cd778
48 changed files with 862 additions and 551 deletions

View file

@ -222,6 +222,7 @@ class _DeveloperPageState extends State<DeveloperPage> {
return Scaffold(
backgroundColor: scale.primaryScale.border,
appBar: DefaultAppBar(
context: context,
title: Text(translate('developer.title')),
leading: IconButton(
icon: Icon(Icons.arrow_back, color: scale.primaryScale.borderText),

View file

@ -19,7 +19,7 @@ class SignalStrengthMeterWidget extends StatelessWidget {
final theme = Theme.of(context);
final scale = theme.extension<ScaleScheme>()!;
const iconSize = 16.0;
final iconSize = 16.0.scaled(context);
return BlocBuilder<ConnectionStateCubit,
AsyncValue<ProcessorConnectionState>>(builder: (context, state) {