You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
667 B
Dart
22 lines
667 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test_sa/views/app_style/sizing.dart';
|
|
|
|
import '../../views/widgets/loaders/app_loading.dart';
|
|
|
|
class ALazyLoading extends StatelessWidget {
|
|
const ALazyLoading({Key key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Container(
|
|
height: 36 * AppStyle.getScaleFactor(context),
|
|
width: 36 * AppStyle.getScaleFactor(context),
|
|
padding: const EdgeInsets.all(8),
|
|
decoration: const BoxDecoration(color: Colors.white, shape: BoxShape.circle, boxShadow: [AppStyle.boxShadow]),
|
|
child: const ALoading(),
|
|
),
|
|
);
|
|
}
|
|
}
|