mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-18 10:04:20 +01:00
simple auth dialog ui
This commit is contained in:
17
lib/component/logo_component.dart
Normal file
17
lib/component/logo_component.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
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,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user