You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.3 KiB
84 lines
2.3 KiB
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
import '../widgets/button_new_party.dart';
|
|
import '../widgets/ingame_widgets.dart';
|
|
import '../widgets/scores_list_widget.dart';
|
|
|
|
class InGameScreen extends StatefulWidget {
|
|
const InGameScreen({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<InGameScreen> createState() => _InGameScreenState();
|
|
}
|
|
|
|
class _InGameScreenState extends State<InGameScreen> {
|
|
late Widget widgetHolder;
|
|
|
|
void initState() {
|
|
widgetHolder = InGameCardConfig();
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Stack(
|
|
children: [
|
|
Container(
|
|
width: MediaQuery.of(context).size.width,
|
|
height: MediaQuery.of(context).size.height,
|
|
decoration: const BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.bottomRight,
|
|
colors: [
|
|
Color(0xff19BDE0),
|
|
Color(0xff4A17DC),
|
|
],
|
|
)),
|
|
),
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
SizedBox(
|
|
height: 120,
|
|
),
|
|
widgetHolder,
|
|
Spacer(),
|
|
ElevatedButton(
|
|
onPressed: () {
|
|
setState(() {
|
|
widgetHolder = InGameCardThrow(
|
|
numberThrow: 2,
|
|
);
|
|
});
|
|
},
|
|
child: Text(
|
|
"PLAY",
|
|
style: GoogleFonts.roboto(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 40,
|
|
color: Color(0xff1ABAE0)),
|
|
),
|
|
style: ElevatedButton.styleFrom(
|
|
side: BorderSide(
|
|
width: 7,
|
|
color: Color(0xff1ABAE0),
|
|
),
|
|
onPrimary: Colors.transparent,
|
|
primary: Colors.transparent,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(55),
|
|
),
|
|
minimumSize: Size(200, 80),
|
|
),
|
|
),
|
|
Spacer(),
|
|
],
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|