styled_bar_title.dart 336 B

123456789101112131415161718
  1. import 'package:flutter/material.dart';
  2. class StyleBarTitle extends StatelessWidget {
  3. final String title;
  4. const StyleBarTitle({
  5. Key? key,
  6. required this.title,
  7. }) : super(key: key);
  8. @override
  9. Widget build(BuildContext context) {
  10. return Text(
  11. title,
  12. style: const TextStyle(fontSize: 24),
  13. );
  14. }
  15. }