fluffychat/lib/pangea/widgets/chat/toolbar_content_loading_indicator.dart
ggurdin 9ecf4e3bd2
fix: fix dart formatting for CI (#1368)
* fix: fix dart formatting for CI

* fix: sorted imports, updated deprecated flutter functions

* fix: format files

* fix: format files

* feat: replace syncfusion flutter package with excel flutter package

* fix: don't run enable google services patch in CI

* fix: update iOS supported platforms for enable ios build script

* fix: commented out linux build in integrate CI
2025-01-07 08:32:42 -05:00

27 lines
649 B
Dart

import 'package:flutter/material.dart';
import 'package:fluffychat/config/app_config.dart';
class ToolbarContentLoadingIndicator extends StatelessWidget {
const ToolbarContentLoadingIndicator({
super.key,
});
@override
Widget build(BuildContext context) {
return SizedBox(
width: AppConfig.toolbarMinWidth / 2,
height: AppConfig.toolbarMinHeight / 2,
child: Center(
child: SizedBox(
height: 14,
width: 14,
child: CircularProgressIndicator(
strokeWidth: 2.0,
color: Theme.of(context).colorScheme.primary,
),
),
),
);
}
}