mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
25 lines
596 B
Dart
25 lines
596 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
||
|
|
|
||
|
|
class ImmichLoadingIndicator extends StatelessWidget {
|
||
|
|
const ImmichLoadingIndicator({
|
||
|
|
Key? key,
|
||
|
|
}) : super(key: key);
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return Container(
|
||
|
|
height: 60,
|
||
|
|
width: 60,
|
||
|
|
decoration: BoxDecoration(
|
||
|
|
color: Theme.of(context).primaryColor.withAlpha(200),
|
||
|
|
borderRadius: BorderRadius.circular(10),
|
||
|
|
),
|
||
|
|
child: const SpinKitDancingSquare(
|
||
|
|
color: Colors.white,
|
||
|
|
size: 30.0,
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|