2024-05-25 13:56:45 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class MatchedScreen extends StatelessWidget {
|
2024-05-30 16:37:34 +02:00
|
|
|
final String currentUserName;
|
|
|
|
final String otherUserName;
|
|
|
|
final String currentUserImageUrl;
|
|
|
|
final String otherUserImageUrl;
|
2024-05-25 13:56:45 +02:00
|
|
|
final VoidCallback onMessageButtonPressed;
|
|
|
|
final VoidCallback onContinueButtonPressed;
|
|
|
|
|
2024-05-26 01:44:49 +02:00
|
|
|
const MatchedScreen({
|
|
|
|
super.key,
|
2024-05-30 16:37:34 +02:00
|
|
|
required this.currentUserName,
|
|
|
|
required this.otherUserName,
|
|
|
|
required this.currentUserImageUrl,
|
|
|
|
required this.otherUserImageUrl,
|
2024-05-25 13:56:45 +02:00
|
|
|
required this.onMessageButtonPressed,
|
|
|
|
required this.onContinueButtonPressed,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(title: const Text('It\'s a Match!')),
|
|
|
|
body: Padding(
|
|
|
|
padding: const EdgeInsets.all(16.0),
|
2024-07-12 23:28:14 +02:00
|
|
|
child: Center(
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
'You and $otherUserName have liked each other!',
|
|
|
|
style: const TextStyle(fontSize: 24),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
const SizedBox(height: 24),
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
CircleAvatar(
|
|
|
|
backgroundImage: (currentUserImageUrl.isEmpty)
|
|
|
|
? null
|
|
|
|
: NetworkImage(currentUserImageUrl),
|
|
|
|
radius: 50,
|
|
|
|
child: (currentUserImageUrl.isEmpty)
|
|
|
|
? const Icon(Icons.person, size: 50)
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
const SizedBox(width: 24),
|
|
|
|
CircleAvatar(
|
|
|
|
backgroundImage: (otherUserImageUrl.isEmpty)
|
|
|
|
? null
|
|
|
|
: NetworkImage(otherUserImageUrl),
|
|
|
|
radius: 50,
|
|
|
|
child: (otherUserImageUrl.isEmpty)
|
|
|
|
? const Icon(Icons.person, size: 50)
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
const SizedBox(height: 24),
|
|
|
|
Text(
|
|
|
|
'$currentUserName and $otherUserName',
|
|
|
|
style: const TextStyle(fontSize: 20),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
const SizedBox(height: 24),
|
|
|
|
ElevatedButton(
|
|
|
|
onPressed: onMessageButtonPressed,
|
|
|
|
child: const Text('Send a Message'),
|
|
|
|
),
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
ElevatedButton(
|
|
|
|
onPressed: onContinueButtonPressed,
|
|
|
|
child: const Text('Continue Swiping'),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-07-12 22:55:41 +02:00
|
|
|
),
|
2024-05-25 13:56:45 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|