Files
2021-03-22 16:49:24 +02:00

29 lines
552 B
Dart

import 'package:flutter/material.dart';
class ItemTitleGroup extends StatelessWidget {
const ItemTitleGroup({
Key key,
this.groupTitle,
}) : super(key: key);
final String groupTitle;
@override
Widget build(BuildContext context) {
return Container(
width: double.infinity,
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
groupTitle,
style: TextStyle(
fontSize: 23,
color: Color(0xFFA7A7A7),
),
),
),
);
}
}