| 12345678910111213141516171819 |
- import 'package:flutter/material.dart';
- import 'package:physigo/friends/widgets/friends_requests.dart';
- import 'package:physigo/friends/widgets/challenge_location_requests.dart';
- class Requests extends StatelessWidget {
- const Requests({ Key? key }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: const [
- ChallengeLocationRequests(),
- SizedBox(height: 32),
- FriendsRequests(),
- ],
- );
- }
- }
|