mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 21:35:32 +00:00
20 lines
432 B
Dart
20 lines
432 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LoadingIcon extends StatelessWidget {
|
|
const LoadingIcon({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Colors.white,
|
|
body: Center(
|
|
child: Image.asset(
|
|
"assets/app_icons/icon.png",
|
|
color: Colors.black,
|
|
fit: BoxFit.cover,
|
|
height: 100,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|