Upload files to "Pong/lib"

main
Benjamin Löffler 2024-01-10 14:50:22 +01:00
parent 54bf6cd5d9
commit 9a29fd5a82
1 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,65 @@
import 'package:flutter/material.dart';
class PongMenu extends StatelessWidget {
// Constructor to initialize the PongMenu with required properties
const PongMenu({
super.key,
required this.title,
required this.subTitle,
required this.child,
});
final String title;
final String subTitle;
final Widget child;
@override
Widget build(BuildContext context) {
// Get the size of the screen
final mq = MediaQuery.of(context).size;
// Calculate the height and width of the dialog
final dialogHeight = mq.height * 0.4;
final dialogWidth = mq.width * 0.8;
// Return a custom-styled Dialog with specified properties
return Dialog(
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
elevation: 0,
backgroundColor: Colors.transparent,
child: Container(
width: dialogWidth,
height: dialogHeight,
decoration: BoxDecoration(
color: const Color.fromARGB(255, 33, 33, 33),
borderRadius: BorderRadius.circular(25),
),
child: Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
// Display the title with custom styling
Text(
title,
style: const TextStyle(
fontSize: 30,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
// Display the subTitle with custom styling
Text(
subTitle,
style: const TextStyle(
fontSize: 30,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
// Display the child widget
child,
],
),
),
);
}
}