diff --git a/lib/screens/scanner_screen.dart b/lib/screens/scanner_screen.dart index 54074a9..f7966e9 100644 --- a/lib/screens/scanner_screen.dart +++ b/lib/screens/scanner_screen.dart @@ -164,9 +164,7 @@ class _ScannerScreenState extends State { ? const SizedBox( width: 20, height: 20, - child: CircularProgressIndicator( - strokeWidth: 2, - ), + child: CircularProgressIndicator(strokeWidth: 2), ) : const Icon(Icons.bluetooth_searching), label: Text( diff --git a/test/screens/usb_flow_test.dart b/test/screens/usb_flow_test.dart index 115281c..0cf57c5 100644 --- a/test/screens/usb_flow_test.dart +++ b/test/screens/usb_flow_test.dart @@ -137,10 +137,7 @@ void main() { final connector = _FakeMeshCoreConnector(); await tester.pumpWidget( - _buildTestApp( - connector: connector, - child: const ScannerScreen(), - ), + _buildTestApp(connector: connector, child: const ScannerScreen()), ); await tester.pumpAndSettle();