app/lib/components/section_title.dart
2022-05-13 11:02:53 +07:00

34 lines
813 B
Dart

import 'package:flutter/material.dart';
class SectionTitle extends StatelessWidget {
const SectionTitle({
Key? key,
required this.title,
required this.pressSeeAll,
}) : super(key: key);
final String title;
final VoidCallback pressSeeAll;
@override
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
title,
style: Theme.of(context).textTheme.subtitle1!.copyWith(
color: Colors.black,
fontWeight: FontWeight.w500,
),
),
TextButton(
onPressed: pressSeeAll,
child: const Text(
"See All",
style: TextStyle(color: Colors.black54),
),
)
],
);
}
}