mirror of
https://github.com/foss42/apidash.git
synced 2025-05-31 22:33:59 +08:00
19 lines
405 B
Dart
19 lines
405 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lottie/lottie.dart';
|
|
|
|
class SendingWidget extends StatelessWidget {
|
|
const SendingWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Lottie.asset("assets/sending.json"),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|