MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit ac6f3d0f92 - Show all commits

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),
], ],
), ),
); );