changed leading and made buttons flexible
parent
1a3e92483f
commit
93ebd4befe
|
@ -115,7 +115,8 @@ class _FlipingCardState extends State<FlipingCard> {
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
OutlinedButton(
|
Flexible(
|
||||||
|
child: OutlinedButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
setState(() {
|
setState(() {
|
||||||
if (index > 0 && index <= widget.players.length) {
|
if (index > 0 && index <= widget.players.length) {
|
||||||
|
@ -128,7 +129,9 @@ class _FlipingCardState extends State<FlipingCard> {
|
||||||
},
|
},
|
||||||
child: const Text("Zurück"),
|
child: const Text("Zurück"),
|
||||||
),
|
),
|
||||||
ElevatedButton(
|
),
|
||||||
|
Flexible(
|
||||||
|
child: ElevatedButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
setState(() {
|
setState(() {
|
||||||
if (index >= 0 && index < widget.players.length - 1) {
|
if (index >= 0 && index < widget.players.length - 1) {
|
||||||
|
@ -151,6 +154,7 @@ class _FlipingCardState extends State<FlipingCard> {
|
||||||
? "Nächster Spieler"
|
? "Nächster Spieler"
|
||||||
: "Spiel anfangen!"),
|
: "Spiel anfangen!"),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
||||||
import 'package:werwolf/screens/flippingcards.dart';
|
import 'package:werwolf/screens/flippingcards.dart';
|
||||||
|
|
||||||
import '../models/game.dart';
|
import '../models/game.dart';
|
||||||
|
@ -31,12 +30,6 @@ class _GameSettingsState extends State<GameSettings> {
|
||||||
style: Theme.of(context).textTheme.titleLarge, // Apply text theme
|
style: Theme.of(context).textTheme.titleLarge, // Apply text theme
|
||||||
),
|
),
|
||||||
centerTitle: true,
|
centerTitle: true,
|
||||||
leading: IconButton(
|
|
||||||
icon: const Icon(FontAwesomeIcons.xmark),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.popUntil(context, ModalRoute.withName('/'));
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.fromLTRB(30.0, 40.0, 30.0, 8.0),
|
padding: const EdgeInsets.fromLTRB(30.0, 40.0, 30.0, 8.0),
|
||||||
|
|
Loading…
Reference in New Issue