update
This commit is contained in:
parent
a06b1287f0
commit
27f654837b
47 changed files with 428 additions and 205 deletions
12
lib/widgets/logo_widget.dart
Normal file
12
lib/widgets/logo_widget.dart
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class LogoWidget extends StatelessWidget {
|
||||
final double size;
|
||||
const LogoWidget({super.key, required this.size});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Image.asset('assets/ofa_logo.webp',
|
||||
width: size, cacheWidth: (size * MediaQuery.of(context).devicePixelRatio).round());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue