123456789101112131415161718192021222324252627282930313233 |
- import 'package:flutter/material.dart';
- class DeviceConnecting extends StatelessWidget {
- const DeviceConnecting({super.key});
- @override
- Widget build(BuildContext context) {
- return Row(
- children: [
- Text(
- '设备连接中',
- style: TextStyle(color: Theme.of(context).primaryColor, fontSize: 24),
- ),
- const SizedBox(
- width: 16,
- ),
- const SizedBox(
- // width: 150,
- height: 20,
- width: 20,
- child: CircularProgressIndicator(
- valueColor: AlwaysStoppedAnimation(
- Colors.blue,
- ),
- ),
- ),
- const SizedBox(
- width: 16,
- ),
- ],
- );
- }
- }
|