Files
nowser/lib/component/logo_component.dart
2024-08-25 01:23:51 +08:00

18 lines
347 B
Dart

import 'package:flutter/material.dart';
class LogoComponent extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
// this should be change to a logo image
width: 40,
height: 40,
color: Colors.red,
child: Icon(
Icons.image,
size: 40,
),
);
}
}