format changes

This commit is contained in:
2026-03-12 11:07:38 +01:00
parent 89cf876707
commit 0658b0cd5b

View File

@@ -51,7 +51,11 @@ class _MyTournamentsCarouselState extends State<MyTournamentsCarousel> {
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Icon(Icons.emoji_events_outlined, size: 48, color: Colors.grey), Icon(
Icons.emoji_events_outlined,
size: 48,
color: Colors.grey,
),
const SizedBox(height: 8), const SizedBox(height: 8),
const Text( const Text(
'No tournaments found', 'No tournaments found',
@@ -111,7 +115,8 @@ class _TournamentCard extends StatelessWidget {
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute( MaterialPageRoute(
builder: (context) => TournamentDetailPage(tournament: tournament), builder: (context) =>
TournamentDetailPage(tournament: tournament),
), ),
); );
}, },