31 lines
725 B
Dart
31 lines
725 B
Dart
import "package:shadcn_flutter/shadcn_flutter.dart";
|
|
|
|
class AppHeader extends StatelessWidget {
|
|
const AppHeader({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"THE AGENCY",
|
|
style: TextStyle(
|
|
fontSize: 32,
|
|
height: 1,
|
|
fontWeight: FontWeight.w900,
|
|
),
|
|
),
|
|
Text(
|
|
"by IMBENJI.NET LTD",
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
height: 1,
|
|
fontWeight: FontWeight.w600,
|
|
color: Theme.of(context).colorScheme.mutedForeground,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|