Profile View

This commit is contained in:
2021-03-22 16:49:24 +02:00
parent 8f86ec409d
commit 1381647a3d
28 changed files with 645 additions and 154 deletions
+28
View File
@@ -0,0 +1,28 @@
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),
),
),
),
);
}
}