Files
sendico/frontend/pweb/lib/widgets/logo.dart
2025-12-05 03:25:52 +01:00

23 lines
511 B
Dart

import 'package:flutter/material.dart';
import 'package:jovial_svg/jovial_svg.dart';
class ServiceLogo extends StatelessWidget {
final double size;
const ServiceLogo({ super.key, this.size = 64 });
@override
Widget build(BuildContext context) => SizedBox(
height: size,
width: size,
child: ScalableImageWidget.fromSISource(
key: const Key('mxLogo'),
si: ScalableImageSource.fromSI(
DefaultAssetBundle.of(context),
'resources/logo.si',
),
),
);
}