mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-03 17:29:23 +00:00
18 lines
380 B
Dart
18 lines
380 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../utilities/assets.dart';
|
|
|
|
class MoneroChanDance extends StatelessWidget {
|
|
const MoneroChanDance({super.key, this.height = 200});
|
|
|
|
final double height;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Image(
|
|
height: height,
|
|
image: AssetImage(
|
|
Assets.gif.moneroChanDance,
|
|
),
|
|
);
|
|
}
|
|
}
|