This repository has been archived on 2025-03-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
brook/lib/widgets/loading.dart
2025-01-03 18:33:59 -05:00

13 lines
309 B
Dart

import "package:flutter/material.dart";
class Loading extends StatelessWidget {
const Loading({super.key});
@override
Widget build(BuildContext context) => const Center(
child: Padding(
padding: EdgeInsets.all(16),
child: CircularProgressIndicator(),
),
);
}