made a small prototype with a navbar

This commit is contained in:
Odweta
2026-03-22 17:18:36 +01:00
parent ea85589767
commit 0219155f8e
15 changed files with 212 additions and 113 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class LeaderboardPage extends StatelessWidget {
const LeaderboardPage({super.key});
@override
Widget build(BuildContext context) {
return const Center(child: Text('top 3!'));
}
}