mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
20 lines
409 B
Dart
20 lines
409 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,
|
|
child: const Image(
|
|
image: AssetImage(
|
|
"assets/imgs/logo/logo512.png",
|
|
),
|
|
width: 40,
|
|
height: 40,
|
|
),
|
|
);
|
|
}
|
|
}
|