Profile View
This commit is contained in:
@@ -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),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user