1import 'package:flutter/material.dart'; 2import 'package:flutter_svg/flutter_svg.dart'; 3 4class CovesLogo extends StatelessWidget { 5 const CovesLogo({super.key, this.size = 150, this.useColorVersion = false}); 6 final double size; 7 final bool useColorVersion; 8 9 @override 10 Widget build(BuildContext context) { 11 return Container( 12 width: size, 13 height: size, 14 margin: const EdgeInsets.only(bottom: 16), 15 child: SvgPicture.asset( 16 useColorVersion 17 ? 'assets/logo/coves-shark-color.svg' 18 : 'assets/logo/coves-shark.svg', 19 width: size, 20 height: size, 21 ), 22 ); 23 } 24}