26 lines
579 B
Dart
26 lines
579 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
import '../../../../common/theme/theme.dart';
|
||
|
|
|
||
|
|
class HomeTitle extends StatelessWidget {
|
||
|
|
final String title;
|
||
|
|
const HomeTitle({super.key, required this.title});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return Row(
|
||
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
|
|
children: [
|
||
|
|
Text(
|
||
|
|
title,
|
||
|
|
style: AppStyle.h6.copyWith(
|
||
|
|
fontWeight: FontWeight.w700,
|
||
|
|
color: AppColor.textPrimary,
|
||
|
|
letterSpacing: -0.5,
|
||
|
|
),
|
||
|
|
),
|
||
|
|
],
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|