bound_fail.dart 397 B

1234567891011121314151617181920
  1. import 'package:flutter/material.dart';
  2. class BoundFail extends StatelessWidget {
  3. const BoundFail({super.key});
  4. @override
  5. Widget build(BuildContext context) {
  6. return Row(
  7. children: const [
  8. Text(
  9. '设备配对失败',
  10. style: TextStyle(color: Colors.red, fontSize: 24),
  11. ),
  12. SizedBox(
  13. width: 32,
  14. ),
  15. ],
  16. );
  17. }
  18. }