mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-03 09:19:22 +00:00
19 lines
380 B
Dart
19 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,
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|