added missing const's

This commit is contained in:
2025-11-15 22:10:51 +01:00
parent 511124e323
commit ac6f3d0f92

View File

@@ -41,11 +41,11 @@ class GroupTile extends StatelessWidget {
color: Colors.white, color: Colors.white,
), ),
), ),
SizedBox(width: 3), const SizedBox(width: 3),
const Icon(Icons.group), const Icon(Icons.group),
], ],
), ),
SizedBox(height: 5), const SizedBox(height: 5),
Wrap( Wrap(
alignment: WrapAlignment.start, alignment: WrapAlignment.start,
crossAxisAlignment: WrapCrossAlignment.start, crossAxisAlignment: WrapCrossAlignment.start,
@@ -64,7 +64,7 @@ class GroupTile extends StatelessWidget {
), ),
child: Text( child: Text(
member.name, member.name,
style: TextStyle( style: const TextStyle(
fontSize: 17, fontSize: 17,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Colors.white, color: Colors.white,
@@ -73,7 +73,7 @@ class GroupTile extends StatelessWidget {
), ),
], ],
), ),
SizedBox(height: 2.5), const SizedBox(height: 2.5),
], ],
), ),
); );