mirror of
https://github.com/Myzel394/quid_faciam_hodie.git
synced 2025-06-20 08:05:26 +02:00
16 lines
341 B
Dart
16 lines
341 B
Dart
import 'package:coast/coast.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:quid_faciam_hodie/widgets/logo.dart';
|
|
|
|
class CrabLogo extends StatelessWidget {
|
|
const CrabLogo({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Crab(
|
|
tag: 'logo',
|
|
child: Logo(),
|
|
);
|
|
}
|
|
}
|