Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
loading.dart
Go to the documentation of this file.
1import 'package:flutter/material.dart';
2import 'package:flutter_screenutil/flutter_screenutil.dart';
3import 'package:lottie/lottie.dart';
4
5import '../../constants/assets.dart';
6
7class Loading extends StatelessWidget {
8 const Loading({super.key});
9
10 @override
11 Widget build(BuildContext context) {
12 return Center(
13 child: Lottie.asset(Assets.loadingLottie, width: 100.sp),
14 );
15 }
16}
static const String loadingLottie
Definition assets.dart:18
final Widget child
override Widget build(BuildContext context)
Definition loading.dart:11
const Loading({super.key})