CreateGameView erstellen #67

Merged
sneeex merged 35 commits from feature/3-creategameview-erstellen into development 2025-12-10 20:43:54 +00:00
Showing only changes of commit b4ccb567b5 - Show all commits

View File

@@ -32,7 +32,7 @@ class TitleDescriptionListTile extends StatelessWidget {
duration: const Duration(milliseconds: 200), duration: const Duration(milliseconds: 200),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Row( Row(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
@@ -70,9 +70,11 @@ class TitleDescriptionListTile extends StatelessWidget {
], ],
], ],
), ),
const SizedBox(height: 5), if (description.isNotEmpty) ...[
Text(description, style: const TextStyle(fontSize: 14)), const SizedBox(height: 5),
const SizedBox(height: 2.5), Text(description, style: const TextStyle(fontSize: 14)),
const SizedBox(height: 2.5),
],
], ],
), ),
), ),