Removed german comments
This commit is contained in:
@@ -51,7 +51,7 @@ class _GraphViewState extends State<GraphView> {
|
|||||||
const Center(
|
const Center(
|
||||||
child: Icon(CupertinoIcons.chart_bar_alt_fill, size: 60),
|
child: Icon(CupertinoIcons.chart_bar_alt_fill, size: 60),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 10), // Abstand von oben
|
const SizedBox(height: 10),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 40),
|
padding: const EdgeInsets.symmetric(horizontal: 40),
|
||||||
child: Text(
|
child: Text(
|
||||||
|
|||||||
@@ -88,10 +88,9 @@ class _MainMenuViewState extends State<MainMenuView> {
|
|||||||
? const Center(child: CupertinoActivityIndicator())
|
? const Center(child: CupertinoActivityIndicator())
|
||||||
: gameManager.gameList.isEmpty
|
: gameManager.gameList.isEmpty
|
||||||
? Column(
|
? Column(
|
||||||
mainAxisAlignment:
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
MainAxisAlignment.center, // Oben ausrichten
|
|
||||||
children: [
|
children: [
|
||||||
const SizedBox(height: 30), // Abstand von oben
|
const SizedBox(height: 30),
|
||||||
Center(
|
Center(
|
||||||
child: GestureDetector(
|
child: GestureDetector(
|
||||||
onTap: () => Navigator.push(
|
onTap: () => Navigator.push(
|
||||||
@@ -107,7 +106,7 @@ class _MainMenuViewState extends State<MainMenuView> {
|
|||||||
color: CustomTheme.primaryColor,
|
color: CustomTheme.primaryColor,
|
||||||
),
|
),
|
||||||
)),
|
)),
|
||||||
const SizedBox(height: 10), // Abstand von oben
|
const SizedBox(height: 10),
|
||||||
Padding(
|
Padding(
|
||||||
padding:
|
padding:
|
||||||
const EdgeInsets.symmetric(horizontal: 70),
|
const EdgeInsets.symmetric(horizontal: 70),
|
||||||
|
|||||||
Reference in New Issue
Block a user