17 lines
324 B
Dart
17 lines
324 B
Dart
|
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,
|
||
|
);
|
||
|
}
|
||
|
}
|