requests.dart 533 B

12345678910111213141516171819
  1. import 'package:flutter/material.dart';
  2. import 'package:physigo/friends/widgets/friends_requests.dart';
  3. import 'package:physigo/friends/widgets/challenge_location_requests.dart';
  4. class Requests extends StatelessWidget {
  5. const Requests({ Key? key }) : super(key: key);
  6. @override
  7. Widget build(BuildContext context) {
  8. return Column(
  9. mainAxisAlignment: MainAxisAlignment.center,
  10. children: const [
  11. ChallengeLocationRequests(),
  12. SizedBox(height: 32),
  13. FriendsRequests(),
  14. ],
  15. );
  16. }
  17. }