mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
18 lines
347 B
Dart
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,
|
|
),
|
|
);
|
|
}
|
|
}
|