| 12345678910111213141516171819202122 |
- import 'package:flutter/material.dart';
- class Ranking extends StatelessWidget {
- final Widget ranks;
- final Widget currentUser;
- const Ranking({required this.ranks, required this.currentUser, Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Column(
- children: [
- SizedBox(
- height: 350,
- child: ranks,
- ),
- Container(
- child: currentUser,
- )
- ],
- );
- }
- }
|