Leaderboard

This commit is contained in:
Nopylacetat
2023-10-20 22:48:19 +02:00
parent a5269f077b
commit ce9e002f4d

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
import '../models/profile.dart';
class LeaderboardPage extends StatelessWidget {
const LeaderboardPage({super.key});
@override
Widget build(BuildContext context) {
final leaderboard = [
Profile('Alina', 123),
];
return const Placeholder();
}
}