CreateGroupView erstellt #28

Merged
flixcoo merged 37 commits from feature/5-creategroupview-erstellen into development 2025-11-19 17:32:44 +00:00
Showing only changes of commit 248d652e06 - Show all commits

View File

@@ -3,13 +3,13 @@ import 'package:game_tracker/core/custom_theme.dart';
class TextIconListTile extends StatelessWidget { class TextIconListTile extends StatelessWidget {
final String text; final String text;
final VoidCallback onPressed; final VoidCallback? onPressed;
final bool iconEnabled; final bool iconEnabled;
const TextIconListTile({ const TextIconListTile({
sneeex marked this conversation as resolved
Review

grafik.png

Alignment irgendwie komisch, Abstand vom Button zum Rand viel größer als vom Namen zum rand

![grafik.png](/attachments/a1c43803-f0d1-4a01-9ab5-e2e43c651ee5) Alignment irgendwie komisch, Abstand vom Button zum Rand viel größer als vom Namen zum rand
8.6 KiB
super.key, super.key,
required this.text, required this.text,
required this.onPressed, this.onPressed,
this.iconEnabled = true, this.iconEnabled = true,
}); });