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.
20 lines
569 B
Dart
20 lines
569 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test_sa/views/app_style/sizing.dart';
|
|
|
|
import 'app_loading.dart';
|
|
|
|
class ALazyLoading extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Container(
|
|
height: 36 * AppStyle.getScaleFactor(context),
|
|
width: 36 * AppStyle.getScaleFactor(context),
|
|
padding: EdgeInsets.all(8),
|
|
decoration: BoxDecoration(color: Colors.white, shape: BoxShape.circle, boxShadow: [AppStyle.boxShadow]),
|
|
child: ALoading(),
|
|
),
|
|
);
|
|
}
|
|
}
|