| 123456789101112131415161718 |
- import 'package:flutter/material.dart';
- class StyleBarTitle extends StatelessWidget {
- final String title;
- const StyleBarTitle({
- Key? key,
- required this.title,
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Text(
- title,
- style: const TextStyle(fontSize: 24),
- );
- }
- }
|