Added Tournament List and detail Page

This commit is contained in:
2026-03-04 08:14:21 +01:00
parent 597bfb60e8
commit 65a6089f5e
4 changed files with 46 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
class TournamentDetailPage extends StatelessWidget {
const TournamentDetailPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Tournament"),),
body: Center(child: Text("Detail"),)
);
}
}