cofounderella/lib/components/my_app_icon.dart

17 lines
324 B
Dart
Raw Permalink Normal View History

import 'package:flutter/material.dart';
class MyAppIcon extends StatelessWidget {
const MyAppIcon({super.key, this.size});
final double? size;
@override
Widget build(BuildContext context) {
return Image.asset(
'lib/assets/app_icon/app_icon_blue.png',
height: size,
width: size,
);
}
}