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.
cloudsolutions-atoms/old_lib/views/widgets/loaders/app_lazy_loading.dart

25 lines
626 B
Dart

import 'package:flutter/material.dart';
import '../../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(),
),
);
}
}