20 lines
377 B
Dart
20 lines
377 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:mymuseum_visitapp/constants.dart';
|
|
|
|
class Loading extends StatelessWidget {
|
|
const Loading({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
height: 85.0,
|
|
width: 85.0,
|
|
child: const Center(
|
|
child: Text("Loading.."),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
|