mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 08:31:19 +00:00
22 lines
597 B
Dart
22 lines
597 B
Dart
//import 'package:flare_flutter/flare_actor.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Loading extends StatelessWidget {
|
|
Loading({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
Size size = MediaQuery.of(context).size;
|
|
return Container(
|
|
width: size.width,
|
|
height: size.height,
|
|
color: Colors.transparent,
|
|
child: Text("No more supported")/*FlareActor(
|
|
'assets/animations/MDLF_animation.flr',
|
|
alignment: Alignment.center,
|
|
fit: BoxFit.scaleDown,
|
|
animation: 'Rotate',
|
|
)*/,
|
|
);
|
|
}
|
|
} |