Files
frosty/lib/widgets/loading_indicator.dart
Tommy Chow f68de827cd Refresh themes and styling (#394)
* consolidate themes

* update and tweak styles, add border styling

* add borders between video and chat

* tweak heights

* improve reply threads
- taller new design
- can now tap parent's reply
- fix crash when tapping self

* tweak border colors

* tweak theme

* tweak theme

* tweak theme

* add accent color picker in settings

* overhaul colors and styles

* remove print

* add divider to chat user modal and revert height

* increase deleted message opacity

* revert highlight color

* tweak color

* tweak colors

* tweak padding

* tweak padding

* tweak placeholder color

* revert input fill color

* use error color
2024-09-06 21:43:27 -07:00

29 lines
732 B
Dart

import 'package:flutter/material.dart';
class LoadingIndicator extends StatelessWidget {
final String? subtitle;
final double spacing;
const LoadingIndicator({super.key, this.subtitle, this.spacing = 8});
@override
Widget build(BuildContext context) {
if (subtitle == null) {
return const Center(child: CircularProgressIndicator.adaptive());
}
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const CircularProgressIndicator.adaptive(),
SizedBox(height: spacing),
Text(
subtitle!,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.5),
),
),
],
);
}
}