Compare commits
11 Commits
refactorin
...
feature/11
| Author | SHA1 | Date | |
|---|---|---|---|
| 016c1ceb6e | |||
| 1b297d15b0 | |||
| ed642e3d4f | |||
| 7cc3873a31 | |||
| b1e9bb3aeb | |||
| caf60d046b | |||
| 38663c6b67 | |||
| ee84c60ba6 | |||
| b6dd0541ae | |||
| 525acec1d3 | |||
| 45a419cae7 |
@@ -1,11 +1,7 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
/// Returns a platform-adaptive page route based on the current platform.
|
|
||||||
/// - On iOS, it returns a [CupertinoPageRoute].
|
|
||||||
/// - On other platforms, it returns a [MaterialPageRoute].
|
|
||||||
Route<T> adaptivePageRoute<T>({
|
Route<T> adaptivePageRoute<T>({
|
||||||
required Widget Function(BuildContext) builder,
|
required Widget Function(BuildContext) builder,
|
||||||
bool fullscreenDialog = false,
|
bool fullscreenDialog = false,
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
/// Application-wide constants
|
|
||||||
class Constants {
|
class Constants {
|
||||||
Constants._(); // Private constructor to prevent instantiation
|
Constants._(); // Private constructor to prevent instantiation
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
/// Theme class that defines colors, border radius, padding, and decorations
|
|
||||||
class CustomTheme {
|
class CustomTheme {
|
||||||
CustomTheme._(); // Private constructor to prevent instantiation
|
CustomTheme._(); // Private constructor to prevent instantiation
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,11 @@
|
|||||||
"days_ago": "vor {count} Tagen",
|
"days_ago": "vor {count} Tagen",
|
||||||
"delete": "Löschen",
|
"delete": "Löschen",
|
||||||
"delete_all_data": "Alle Daten löschen",
|
"delete_all_data": "Alle Daten löschen",
|
||||||
|
"delete_group": "Diese Gruppe löschen",
|
||||||
|
"edit_group": "Gruppe bearbeiten",
|
||||||
"error_creating_group": "Fehler beim Erstellen der Gruppe, bitte erneut versuchen",
|
"error_creating_group": "Fehler beim Erstellen der Gruppe, bitte erneut versuchen",
|
||||||
|
"error_deleting_group": "Fehler beim Löschen der Gruppe, bitte erneut versuchen",
|
||||||
|
"error_editing_group": "Fehler beim Bearbeiten der Gruppe, bitte erneut versuchen",
|
||||||
"error_reading_file": "Fehler beim Lesen der Datei",
|
"error_reading_file": "Fehler beim Lesen der Datei",
|
||||||
"export_canceled": "Export abgebrochen",
|
"export_canceled": "Export abgebrochen",
|
||||||
"export_data": "Daten exportieren",
|
"export_data": "Daten exportieren",
|
||||||
|
|||||||
@@ -34,10 +34,10 @@
|
|||||||
"description": "Button text to create a match"
|
"description": "Button text to create a match"
|
||||||
},
|
},
|
||||||
"@create_new_group": {
|
"@create_new_group": {
|
||||||
"description": "Button text to create a new group"
|
"description": "Appbar text to create a new group"
|
||||||
},
|
},
|
||||||
"@create_new_match": {
|
"@create_new_match": {
|
||||||
"description": "Button text to create a new match"
|
"description": "Appbar text to create a new match"
|
||||||
},
|
},
|
||||||
"@data": {
|
"@data": {
|
||||||
"description": "Data label"
|
"description": "Data label"
|
||||||
@@ -65,9 +65,21 @@
|
|||||||
"@delete_all_data": {
|
"@delete_all_data": {
|
||||||
"description": "Confirmation dialog for deleting all data"
|
"description": "Confirmation dialog for deleting all data"
|
||||||
},
|
},
|
||||||
|
"@delete_group": {
|
||||||
|
"description": "Confirmation dialog for deleting a group"
|
||||||
|
},
|
||||||
|
"@edit_group": {
|
||||||
|
"description": "Button & Appbar label for editing a group"
|
||||||
|
},
|
||||||
"@error_creating_group": {
|
"@error_creating_group": {
|
||||||
"description": "Error message when group creation fails"
|
"description": "Error message when group creation fails"
|
||||||
},
|
},
|
||||||
|
"@error_deleting_group": {
|
||||||
|
"description": "Error message when group deletion fails"
|
||||||
|
},
|
||||||
|
"@error_editing_group": {
|
||||||
|
"description": "Error message when group editing fails"
|
||||||
|
},
|
||||||
"@error_reading_file": {
|
"@error_reading_file": {
|
||||||
"description": "Error message when file cannot be read"
|
"description": "Error message when file cannot be read"
|
||||||
},
|
},
|
||||||
@@ -297,7 +309,11 @@
|
|||||||
"days_ago": "{count} days ago",
|
"days_ago": "{count} days ago",
|
||||||
"delete": "Delete",
|
"delete": "Delete",
|
||||||
"delete_all_data": "Delete all data",
|
"delete_all_data": "Delete all data",
|
||||||
|
"delete_group": "Delete this group",
|
||||||
|
"edit_group": "Edit Group",
|
||||||
"error_creating_group": "Error while creating group, please try again",
|
"error_creating_group": "Error while creating group, please try again",
|
||||||
|
"error_deleting_group": "Error while deleting group, please try again",
|
||||||
|
"error_editing_group": "Error while editing group, please try again",
|
||||||
"error_reading_file": "Error reading file",
|
"error_reading_file": "Error reading file",
|
||||||
"export_canceled": "Export canceled",
|
"export_canceled": "Export canceled",
|
||||||
"export_data": "Export data",
|
"export_data": "Export data",
|
||||||
|
|||||||
@@ -164,13 +164,13 @@ abstract class AppLocalizations {
|
|||||||
/// **'Create match'**
|
/// **'Create match'**
|
||||||
String get create_match;
|
String get create_match;
|
||||||
|
|
||||||
/// Button text to create a new group
|
/// Appbar text to create a new group
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
/// **'Create new group'**
|
/// **'Create new group'**
|
||||||
String get create_new_group;
|
String get create_new_group;
|
||||||
|
|
||||||
/// Button text to create a new match
|
/// Appbar text to create a new match
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
/// **'Create new match'**
|
/// **'Create new match'**
|
||||||
@@ -218,12 +218,36 @@ abstract class AppLocalizations {
|
|||||||
/// **'Delete all data'**
|
/// **'Delete all data'**
|
||||||
String get delete_all_data;
|
String get delete_all_data;
|
||||||
|
|
||||||
|
/// Confirmation dialog for deleting a group
|
||||||
|
///
|
||||||
|
/// In en, this message translates to:
|
||||||
|
/// **'Delete this group'**
|
||||||
|
String get delete_group;
|
||||||
|
|
||||||
|
/// Button & Appbar label for editing a group
|
||||||
|
///
|
||||||
|
/// In en, this message translates to:
|
||||||
|
/// **'Edit Group'**
|
||||||
|
String get edit_group;
|
||||||
|
|
||||||
/// Error message when group creation fails
|
/// Error message when group creation fails
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
/// **'Error while creating group, please try again'**
|
/// **'Error while creating group, please try again'**
|
||||||
String get error_creating_group;
|
String get error_creating_group;
|
||||||
|
|
||||||
|
/// Error message when group deletion fails
|
||||||
|
///
|
||||||
|
/// In en, this message translates to:
|
||||||
|
/// **'Error while deleting group, please try again'**
|
||||||
|
String get error_deleting_group;
|
||||||
|
|
||||||
|
/// Error message when group editing fails
|
||||||
|
///
|
||||||
|
/// In en, this message translates to:
|
||||||
|
/// **'Error while editing group, please try again'**
|
||||||
|
String get error_editing_group;
|
||||||
|
|
||||||
/// Error message when file cannot be read
|
/// Error message when file cannot be read
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
|
|||||||
@@ -72,10 +72,24 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get delete_all_data => 'Alle Daten löschen';
|
String get delete_all_data => 'Alle Daten löschen';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get delete_group => 'Diese Gruppe löschen';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get edit_group => 'Gruppe bearbeiten';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get error_creating_group =>
|
String get error_creating_group =>
|
||||||
'Fehler beim Erstellen der Gruppe, bitte erneut versuchen';
|
'Fehler beim Erstellen der Gruppe, bitte erneut versuchen';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get error_deleting_group =>
|
||||||
|
'Fehler beim Löschen der Gruppe, bitte erneut versuchen';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get error_editing_group =>
|
||||||
|
'Fehler beim Bearbeiten der Gruppe, bitte erneut versuchen';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get error_reading_file => 'Fehler beim Lesen der Datei';
|
String get error_reading_file => 'Fehler beim Lesen der Datei';
|
||||||
|
|
||||||
|
|||||||
@@ -72,10 +72,24 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get delete_all_data => 'Delete all data';
|
String get delete_all_data => 'Delete all data';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get delete_group => 'Delete this group';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get edit_group => 'Edit Group';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get error_creating_group =>
|
String get error_creating_group =>
|
||||||
'Error while creating group, please try again';
|
'Error while creating group, please try again';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get error_deleting_group =>
|
||||||
|
'Error while deleting group, please try again';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get error_editing_group =>
|
||||||
|
'Error while editing group, please try again';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get error_reading_file => 'Error reading file';
|
String get error_reading_file => 'Error reading file';
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,6 @@ import 'package:game_tracker/presentation/views/main_menu/statistics_view.dart';
|
|||||||
import 'package:game_tracker/presentation/widgets/navbar_item.dart';
|
import 'package:game_tracker/presentation/widgets/navbar_item.dart';
|
||||||
|
|
||||||
class CustomNavigationBar extends StatefulWidget {
|
class CustomNavigationBar extends StatefulWidget {
|
||||||
/// A custom navigation bar widget that provides tabbed navigation
|
|
||||||
/// between different views: Home, Matches, Groups, and Statistics.
|
|
||||||
const CustomNavigationBar({super.key});
|
const CustomNavigationBar({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -1,114 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
|
||||||
import 'package:game_tracker/core/enums.dart';
|
|
||||||
import 'package:game_tracker/data/db/database.dart';
|
|
||||||
import 'package:game_tracker/data/dto/group.dart';
|
|
||||||
import 'package:game_tracker/data/dto/player.dart';
|
|
||||||
import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
|
||||||
import 'package:game_tracker/presentation/widgets/buttons/custom_width_button.dart';
|
|
||||||
import 'package:game_tracker/presentation/widgets/player_selection.dart';
|
|
||||||
import 'package:game_tracker/presentation/widgets/text_input/text_input_field.dart';
|
|
||||||
import 'package:provider/provider.dart';
|
|
||||||
|
|
||||||
class CreateGroupView extends StatefulWidget {
|
|
||||||
/// A view that allows the user to create a new group
|
|
||||||
const CreateGroupView({super.key});
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<CreateGroupView> createState() => _CreateGroupViewState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _CreateGroupViewState extends State<CreateGroupView> {
|
|
||||||
late final AppDatabase db;
|
|
||||||
|
|
||||||
/// Controller for the group name input field
|
|
||||||
final _groupNameController = TextEditingController();
|
|
||||||
|
|
||||||
/// List of currently selected players
|
|
||||||
List<Player> selectedPlayers = [];
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
db = Provider.of<AppDatabase>(context, listen: false);
|
|
||||||
_groupNameController.addListener(() {
|
|
||||||
setState(() {});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void dispose() {
|
|
||||||
_groupNameController.dispose();
|
|
||||||
super.dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final loc = AppLocalizations.of(context);
|
|
||||||
return ScaffoldMessenger(
|
|
||||||
child: Scaffold(
|
|
||||||
backgroundColor: CustomTheme.backgroundColor,
|
|
||||||
appBar: AppBar(title: Text(loc.create_new_group)),
|
|
||||||
body: SafeArea(
|
|
||||||
child: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
margin: CustomTheme.standardMargin,
|
|
||||||
child: TextInputField(
|
|
||||||
controller: _groupNameController,
|
|
||||||
hintText: loc.group_name,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: PlayerSelection(
|
|
||||||
onChanged: (value) {
|
|
||||||
setState(() {
|
|
||||||
selectedPlayers = [...value];
|
|
||||||
});
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
CustomWidthButton(
|
|
||||||
text: loc.create_group,
|
|
||||||
sizeRelativeToWidth: 0.95,
|
|
||||||
buttonType: ButtonType.primary,
|
|
||||||
onPressed:
|
|
||||||
(_groupNameController.text.isEmpty ||
|
|
||||||
(selectedPlayers.length < 2))
|
|
||||||
? null
|
|
||||||
: () async {
|
|
||||||
bool success = await db.groupDao.addGroup(
|
|
||||||
group: Group(
|
|
||||||
name: _groupNameController.text.trim(),
|
|
||||||
members: selectedPlayers,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
if (!context.mounted) return;
|
|
||||||
if (success) {
|
|
||||||
Navigator.pop(context);
|
|
||||||
} else {
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
|
||||||
SnackBar(
|
|
||||||
backgroundColor: CustomTheme.boxColor,
|
|
||||||
content: Center(
|
|
||||||
child: Text(
|
|
||||||
AppLocalizations.of(
|
|
||||||
context,
|
|
||||||
).error_creating_group,
|
|
||||||
style: const TextStyle(color: Colors.white),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
const SizedBox(height: 20),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,182 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
import 'package:game_tracker/core/enums.dart';
|
||||||
|
import 'package:game_tracker/data/db/database.dart';
|
||||||
|
import 'package:game_tracker/data/dto/group.dart';
|
||||||
|
import 'package:game_tracker/data/dto/player.dart';
|
||||||
|
import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
||||||
|
import 'package:game_tracker/presentation/widgets/buttons/custom_width_button.dart';
|
||||||
|
import 'package:game_tracker/presentation/widgets/player_selection.dart';
|
||||||
|
import 'package:game_tracker/presentation/widgets/text_input/text_input_field.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
class GroupDetailView extends StatefulWidget {
|
||||||
|
const GroupDetailView({super.key, this.groupToEdit});
|
||||||
|
|
||||||
|
/// The group to edit, if any
|
||||||
|
final Group? groupToEdit;
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<GroupDetailView> createState() => _GroupDetailViewState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _GroupDetailViewState extends State<GroupDetailView> {
|
||||||
|
late final AppDatabase db;
|
||||||
|
|
||||||
|
/// GlobalKey for ScaffoldMessenger to show snackbars
|
||||||
|
final _scaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
|
||||||
|
|
||||||
|
/// Controller for the group name input field
|
||||||
|
final _groupNameController = TextEditingController();
|
||||||
|
|
||||||
|
/// List of currently selected players
|
||||||
|
List<Player> selectedPlayers = [];
|
||||||
|
|
||||||
|
/// List of initially selected players (when editing a group)
|
||||||
|
List<Player> initialSelectedPlayers = [];
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
db = Provider.of<AppDatabase>(context, listen: false);
|
||||||
|
if(widget.groupToEdit != null) {
|
||||||
|
_groupNameController.text = widget.groupToEdit!.name;
|
||||||
|
setState(() {
|
||||||
|
initialSelectedPlayers = widget.groupToEdit!.members;
|
||||||
|
selectedPlayers = widget.groupToEdit!.members;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
_groupNameController.addListener(() {
|
||||||
|
setState(() {});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_groupNameController.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final loc = AppLocalizations.of(context);
|
||||||
|
return ScaffoldMessenger(
|
||||||
|
key: _scaffoldMessengerKey,
|
||||||
|
child: Scaffold(
|
||||||
|
backgroundColor: CustomTheme.backgroundColor,
|
||||||
|
appBar: AppBar(title: Text(widget.groupToEdit == null ? loc.create_new_group : loc.edit_group), actions: widget.groupToEdit == null ? [] : [IconButton(icon: const Icon(Icons.delete), onPressed: () async {
|
||||||
|
if(widget.groupToEdit != null) {
|
||||||
|
showDialog<bool>(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: Text(loc.delete_group),
|
||||||
|
content: Text(loc.this_cannot_be_undone),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(context).pop(false),
|
||||||
|
child: Text(loc.cancel),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(context).pop(true),
|
||||||
|
child: Text(loc.delete),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
).then((confirmed) async {
|
||||||
|
if (confirmed == true && context.mounted) {
|
||||||
|
bool success = await db.groupDao.deleteGroup(groupId: widget.groupToEdit!.id);
|
||||||
|
if (!context.mounted) return;
|
||||||
|
if (success) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
} else {
|
||||||
|
if (!mounted) return;
|
||||||
|
showSnackbar(message: loc.error_deleting_group);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},)],),
|
||||||
|
body: SafeArea(
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
margin: CustomTheme.standardMargin,
|
||||||
|
child: TextInputField(
|
||||||
|
controller: _groupNameController,
|
||||||
|
hintText: loc.group_name,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: PlayerSelection(
|
||||||
|
initialSelectedPlayers: initialSelectedPlayers,
|
||||||
|
onChanged: (value) {
|
||||||
|
setState(() {
|
||||||
|
selectedPlayers = [...value];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
CustomWidthButton(
|
||||||
|
text: widget.groupToEdit == null ? loc.create_group : loc.edit_group,
|
||||||
|
sizeRelativeToWidth: 0.95,
|
||||||
|
buttonType: ButtonType.primary,
|
||||||
|
onPressed:
|
||||||
|
(_groupNameController.text.isEmpty ||
|
||||||
|
(selectedPlayers.length < 2))
|
||||||
|
? null
|
||||||
|
: () async {
|
||||||
|
late bool success;
|
||||||
|
if (widget.groupToEdit == null) {
|
||||||
|
success = await db.groupDao.addGroup(
|
||||||
|
group: Group(
|
||||||
|
name: _groupNameController.text.trim(),
|
||||||
|
members: selectedPlayers,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
//TODO: Implement group editing in database
|
||||||
|
/*
|
||||||
|
success = await db.groupDao.updateGroup(
|
||||||
|
group: Group(
|
||||||
|
id: widget.groupToEdit!.id,
|
||||||
|
name: _groupNameController.text.trim(),
|
||||||
|
members: selectedPlayers,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
*/
|
||||||
|
success = false;
|
||||||
|
}
|
||||||
|
if (!context.mounted) return;
|
||||||
|
if (success) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
} else {
|
||||||
|
showSnackbar(message: widget.groupToEdit == null ? loc.error_creating_group : loc.error_editing_group);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
const SizedBox(height: 20),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
/// Displays a snackbar with the given message and optional action.
|
||||||
|
///
|
||||||
|
/// [message] The message to display in the snackbar.
|
||||||
|
void showSnackbar({
|
||||||
|
required String message,
|
||||||
|
}) {
|
||||||
|
final messenger = _scaffoldMessengerKey.currentState;
|
||||||
|
if (messenger != null) {
|
||||||
|
messenger.hideCurrentSnackBar();
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(
|
||||||
|
content: Text(message, style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: CustomTheme.boxColor,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,7 +6,7 @@ import 'package:game_tracker/data/db/database.dart';
|
|||||||
import 'package:game_tracker/data/dto/group.dart';
|
import 'package:game_tracker/data/dto/group.dart';
|
||||||
import 'package:game_tracker/data/dto/player.dart';
|
import 'package:game_tracker/data/dto/player.dart';
|
||||||
import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
||||||
import 'package:game_tracker/presentation/views/main_menu/group_view/create_group_view.dart';
|
import 'package:game_tracker/presentation/views/main_menu/group_view/group_detail_view.dart';
|
||||||
import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
|
import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
|
||||||
import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart';
|
import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart';
|
||||||
import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart';
|
||||||
@@ -14,7 +14,6 @@ import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class GroupsView extends StatefulWidget {
|
class GroupsView extends StatefulWidget {
|
||||||
/// A view that displays a list of groups
|
|
||||||
const GroupsView({super.key});
|
const GroupsView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -74,7 +73,19 @@ class _GroupsViewState extends State<GroupsView> {
|
|||||||
height: MediaQuery.paddingOf(context).bottom - 20,
|
height: MediaQuery.paddingOf(context).bottom - 20,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return GroupTile(group: groups[index]);
|
return GroupTile(group: groups[index], onTap: () async {
|
||||||
|
await Navigator.push(
|
||||||
|
context,
|
||||||
|
adaptivePageRoute(
|
||||||
|
builder: (context) {
|
||||||
|
return GroupDetailView(groupToEdit: groups[index]);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
setState(() {
|
||||||
|
loadGroups();
|
||||||
|
});
|
||||||
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -89,7 +100,7 @@ class _GroupsViewState extends State<GroupsView> {
|
|||||||
context,
|
context,
|
||||||
adaptivePageRoute(
|
adaptivePageRoute(
|
||||||
builder: (context) {
|
builder: (context) {
|
||||||
return const CreateGroupView();
|
return const GroupDetailView();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -15,8 +15,6 @@ import 'package:game_tracker/presentation/widgets/tiles/quick_info_tile.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class HomeView extends StatefulWidget {
|
class HomeView extends StatefulWidget {
|
||||||
/// The main home view of the application, displaying quick info,
|
|
||||||
/// recent matches, and quick create options.
|
|
||||||
const HomeView({super.key});
|
const HomeView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -6,21 +6,15 @@ import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.d
|
|||||||
import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart';
|
||||||
|
|
||||||
class ChooseGameView extends StatefulWidget {
|
class ChooseGameView extends StatefulWidget {
|
||||||
/// A view that allows the user to choose a game from a list of available games
|
final List<(String, String, Ruleset)> games;
|
||||||
/// - [games]: A list of tuples containing the game name, description and ruleset
|
final int initialGameIndex;
|
||||||
/// - [initialGameIndex]: The index of the initially selected game
|
|
||||||
const ChooseGameView({
|
const ChooseGameView({
|
||||||
super.key,
|
super.key,
|
||||||
required this.games,
|
required this.games,
|
||||||
required this.initialGameIndex,
|
required this.initialGameIndex,
|
||||||
});
|
});
|
||||||
|
|
||||||
/// A list of tuples containing the game name, description and ruleset
|
|
||||||
final List<(String, String, Ruleset)> games;
|
|
||||||
|
|
||||||
/// The index of the initially selected game
|
|
||||||
final int initialGameIndex;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<ChooseGameView> createState() => _ChooseGameViewState();
|
State<ChooseGameView> createState() => _ChooseGameViewState();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,21 +7,15 @@ import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart';
|
|||||||
import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
||||||
|
|
||||||
class ChooseGroupView extends StatefulWidget {
|
class ChooseGroupView extends StatefulWidget {
|
||||||
/// A view that allows the user to choose a group from a list of groups.
|
final List<Group> groups;
|
||||||
/// - [groups]: A list of available groups to choose from
|
final String initialGroupId;
|
||||||
/// - [initialGroupId]: The ID of the initially selected group
|
|
||||||
const ChooseGroupView({
|
const ChooseGroupView({
|
||||||
super.key,
|
super.key,
|
||||||
required this.groups,
|
required this.groups,
|
||||||
required this.initialGroupId,
|
required this.initialGroupId,
|
||||||
});
|
});
|
||||||
|
|
||||||
/// A list of available groups to choose from
|
|
||||||
final List<Group> groups;
|
|
||||||
|
|
||||||
/// The ID of the initially selected group
|
|
||||||
final String initialGroupId;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<ChooseGroupView> createState() => _ChooseGroupViewState();
|
State<ChooseGroupView> createState() => _ChooseGroupViewState();
|
||||||
}
|
}
|
||||||
@@ -146,11 +140,10 @@ class _ChooseGroupViewState extends State<ChooseGroupView> {
|
|||||||
filteredGroups.clear();
|
filteredGroups.clear();
|
||||||
filteredGroups.addAll(
|
filteredGroups.addAll(
|
||||||
widget.groups.where(
|
widget.groups.where(
|
||||||
(group) =>
|
(group) =>
|
||||||
group.name.toLowerCase().contains(query.toLowerCase()) ||
|
group.name.toLowerCase().contains(query.toLowerCase()) ||
|
||||||
group.members.any(
|
group.members.any(
|
||||||
(player) =>
|
(player) => player.name.toLowerCase().contains(query.toLowerCase()),
|
||||||
player.name.toLowerCase().contains(query.toLowerCase()),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,21 +5,15 @@ import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
|||||||
import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart';
|
||||||
|
|
||||||
class ChooseRulesetView extends StatefulWidget {
|
class ChooseRulesetView extends StatefulWidget {
|
||||||
/// A view that allows the user to choose a ruleset from a list of available rulesets
|
final List<(Ruleset, String)> rulesets;
|
||||||
/// - [rulesets]: A list of tuples containing the ruleset and its description
|
final int initialRulesetIndex;
|
||||||
/// - [initialRulesetIndex]: The index of the initially selected ruleset
|
|
||||||
const ChooseRulesetView({
|
const ChooseRulesetView({
|
||||||
super.key,
|
super.key,
|
||||||
required this.rulesets,
|
required this.rulesets,
|
||||||
required this.initialRulesetIndex,
|
required this.initialRulesetIndex,
|
||||||
});
|
});
|
||||||
|
|
||||||
/// A list of tuples containing the ruleset and its description
|
|
||||||
final List<(Ruleset, String)> rulesets;
|
|
||||||
|
|
||||||
/// The index of the initially selected ruleset
|
|
||||||
final int initialRulesetIndex;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<ChooseRulesetView> createState() => _ChooseRulesetViewState();
|
State<ChooseRulesetView> createState() => _ChooseRulesetViewState();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,12 +18,8 @@ import 'package:game_tracker/presentation/widgets/tiles/choose_tile.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class CreateMatchView extends StatefulWidget {
|
class CreateMatchView extends StatefulWidget {
|
||||||
/// A view that allows creating a new match
|
|
||||||
/// [onWinnerChanged]: Optional callback invoked when the winner is changed
|
|
||||||
const CreateMatchView({super.key, this.onWinnerChanged});
|
|
||||||
|
|
||||||
/// Optional callback invoked when the winner is changed
|
|
||||||
final VoidCallback? onWinnerChanged;
|
final VoidCallback? onWinnerChanged;
|
||||||
|
const CreateMatchView({super.key, this.onWinnerChanged});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<CreateMatchView> createState() => _CreateMatchViewState();
|
State<CreateMatchView> createState() => _CreateMatchViewState();
|
||||||
@@ -74,6 +70,9 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
/// List of available rulesets with their localized string representations
|
/// List of available rulesets with their localized string representations
|
||||||
late final List<(Ruleset, String)> _rulesets;
|
late final List<(Ruleset, String)> _rulesets;
|
||||||
|
|
||||||
|
/// GlobalKey for ScaffoldMessenger to show snackbars
|
||||||
|
final _scaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
@@ -124,6 +123,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
return ScaffoldMessenger(
|
return ScaffoldMessenger(
|
||||||
|
key: _scaffoldMessengerKey,
|
||||||
child: Scaffold(
|
child: Scaffold(
|
||||||
backgroundColor: CustomTheme.backgroundColor,
|
backgroundColor: CustomTheme.backgroundColor,
|
||||||
appBar: AppBar(title: Text(loc.create_new_match)),
|
appBar: AppBar(title: Text(loc.create_new_match)),
|
||||||
@@ -206,8 +206,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
if (selectedGroup != null) {
|
if (selectedGroup != null) {
|
||||||
filteredPlayerList = playerList
|
filteredPlayerList = playerList
|
||||||
.where(
|
.where(
|
||||||
(p) =>
|
(p) => !selectedGroup!.members.any((m) => m.id == p.id),
|
||||||
!selectedGroup!.members.any((m) => m.id == p.id),
|
|
||||||
)
|
)
|
||||||
.toList();
|
.toList();
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -8,17 +8,11 @@ import 'package:game_tracker/presentation/widgets/tiles/custom_radio_list_tile.d
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class MatchResultView extends StatefulWidget {
|
class MatchResultView extends StatefulWidget {
|
||||||
/// A view that allows selecting and saving the winner of a match
|
|
||||||
/// [match]: The match for which the winner is to be selected
|
|
||||||
/// [onWinnerChanged]: Optional callback invoked when the winner is changed
|
|
||||||
const MatchResultView({super.key, required this.match, this.onWinnerChanged});
|
|
||||||
|
|
||||||
/// The match for which the winner is to be selected
|
|
||||||
final Match match;
|
final Match match;
|
||||||
|
|
||||||
/// Optional callback invoked when the winner is changed
|
|
||||||
final VoidCallback? onWinnerChanged;
|
final VoidCallback? onWinnerChanged;
|
||||||
|
|
||||||
|
const MatchResultView({super.key, required this.match, this.onWinnerChanged});
|
||||||
@override
|
@override
|
||||||
State<MatchResultView> createState() => _MatchResultViewState();
|
State<MatchResultView> createState() => _MatchResultViewState();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class MatchView extends StatefulWidget {
|
class MatchView extends StatefulWidget {
|
||||||
/// A view that displays a list of matches
|
|
||||||
const MatchView({super.key});
|
const MatchView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -5,13 +5,10 @@ import 'package:game_tracker/presentation/views/main_menu/settings_view/licenses
|
|||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
class LicenseDetailView extends StatelessWidget {
|
class LicenseDetailView extends StatelessWidget {
|
||||||
/// A detailed view displaying information about a software package license.
|
|
||||||
/// - [package]: The package data to be displayed.
|
|
||||||
const LicenseDetailView({super.key, required this.package});
|
|
||||||
|
|
||||||
/// The package data to be displayed.
|
|
||||||
final Package package;
|
final Package package;
|
||||||
|
|
||||||
|
const LicenseDetailView({super.key, required this.package});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import 'package:game_tracker/presentation/views/main_menu/settings_view/licenses
|
|||||||
import 'package:game_tracker/presentation/widgets/tiles/license_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/license_tile.dart';
|
||||||
|
|
||||||
class LicensesView extends StatelessWidget {
|
class LicensesView extends StatelessWidget {
|
||||||
/// A view that displays a list of open source licenses used in the app
|
|
||||||
const LicensesView({super.key});
|
const LicensesView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ import 'package:package_info_plus/package_info_plus.dart';
|
|||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
class SettingsView extends StatefulWidget {
|
class SettingsView extends StatefulWidget {
|
||||||
/// The settings view of the application, allowing users to manage data
|
|
||||||
/// and view legal information.
|
|
||||||
const SettingsView({super.key});
|
const SettingsView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -23,12 +21,17 @@ class SettingsView extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _SettingsViewState extends State<SettingsView> {
|
class _SettingsViewState extends State<SettingsView> {
|
||||||
|
|
||||||
|
/// GlobalKey for ScaffoldMessenger to show snackbars only on this screen
|
||||||
|
final _scaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
|
||||||
|
|
||||||
PackageInfo _packageInfo = PackageInfo(
|
PackageInfo _packageInfo = PackageInfo(
|
||||||
appName: 'n.A.',
|
appName: 'n.A.',
|
||||||
packageName: 'n.A.',
|
packageName: 'n.A.',
|
||||||
version: 'n.A.',
|
version: 'n.A.',
|
||||||
buildNumber: 'n.A.',
|
buildNumber: 'n.A.',
|
||||||
);
|
);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
@@ -39,288 +42,252 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
return ScaffoldMessenger(
|
return ScaffoldMessenger(
|
||||||
child: Builder(
|
key: _scaffoldMessengerKey,
|
||||||
builder: (scaffoldMessengerContext) {
|
child: Scaffold(
|
||||||
return Scaffold(
|
appBar: AppBar(backgroundColor: CustomTheme.backgroundColor),
|
||||||
appBar: AppBar(backgroundColor: CustomTheme.backgroundColor),
|
backgroundColor: CustomTheme.backgroundColor,
|
||||||
backgroundColor: CustomTheme.backgroundColor,
|
body: SingleChildScrollView(
|
||||||
body: SingleChildScrollView(
|
child: Column(
|
||||||
child: Column(
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
children: [
|
||||||
children: [
|
Padding(
|
||||||
Padding(
|
padding: const EdgeInsets.only(left: 16, bottom: 10),
|
||||||
padding: const EdgeInsets.only(left: 16, bottom: 10),
|
child: Text(
|
||||||
child: Text(
|
textAlign: TextAlign.start,
|
||||||
textAlign: TextAlign.start,
|
loc.settings,
|
||||||
loc.settings,
|
style: const TextStyle(
|
||||||
style: const TextStyle(
|
fontSize: 28,
|
||||||
fontSize: 28,
|
fontWeight: FontWeight.bold,
|
||||||
fontWeight: FontWeight.bold,
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 16, top: 10, bottom: 10),
|
||||||
|
child: Text(
|
||||||
|
textAlign: TextAlign.start,
|
||||||
|
loc.data,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 22,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SettingsListTile(
|
||||||
|
title: loc.export_data,
|
||||||
|
icon: Icons.upload,
|
||||||
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
|
onPressed: () async {
|
||||||
|
final String json =
|
||||||
|
await DataTransferService.getAppDataAsJson(context);
|
||||||
|
final result = await DataTransferService.exportData(
|
||||||
|
json,
|
||||||
|
'game_tracker-data',
|
||||||
|
);
|
||||||
|
if (!mounted) return;
|
||||||
|
showExportSnackBar(result: result);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SettingsListTile(
|
||||||
|
title: loc.import_data,
|
||||||
|
icon: Icons.download,
|
||||||
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
|
onPressed: () async {
|
||||||
|
final result = await DataTransferService.importData(context);
|
||||||
|
if (!mounted) return;
|
||||||
|
showImportSnackBar(result: result);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SettingsListTile(
|
||||||
|
title: loc.delete_all_data,
|
||||||
|
icon: Icons.delete,
|
||||||
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
|
onPressed: () {
|
||||||
|
showDialog<bool>(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: Text('${loc.delete_all_data}?'),
|
||||||
|
content: Text(loc.this_cannot_be_undone),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(context).pop(false),
|
||||||
|
child: Text(loc.cancel),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(context).pop(true),
|
||||||
|
child: Text(loc.delete),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
|
).then((confirmed) {
|
||||||
|
if (confirmed == true && context.mounted) {
|
||||||
|
DataTransferService.deleteAllData(context);
|
||||||
|
showSnackbar(
|
||||||
|
message: AppLocalizations.of(
|
||||||
|
context,
|
||||||
|
).data_successfully_deleted,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 16, top: 10, bottom: 10),
|
||||||
|
child: Text(
|
||||||
|
textAlign: TextAlign.start,
|
||||||
|
loc.legal,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 22,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
),
|
),
|
||||||
Padding(
|
),
|
||||||
padding: const EdgeInsets.only(
|
),
|
||||||
left: 16,
|
SettingsListTile(
|
||||||
top: 10,
|
title: loc.licenses,
|
||||||
bottom: 10,
|
icon: Icons.insert_drive_file,
|
||||||
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => const LicensesView(),
|
||||||
),
|
),
|
||||||
child: Text(
|
);
|
||||||
textAlign: TextAlign.start,
|
},
|
||||||
loc.data,
|
),
|
||||||
style: const TextStyle(
|
SettingsListTile(
|
||||||
fontSize: 22,
|
title: loc.legal_notice,
|
||||||
fontWeight: FontWeight.bold,
|
icon: Icons.account_balance_sharp,
|
||||||
),
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
),
|
onPressed: null,
|
||||||
),
|
),
|
||||||
SettingsListTile(
|
SettingsListTile(
|
||||||
title: loc.export_data,
|
title: loc.privacy_policy,
|
||||||
icon: Icons.upload,
|
icon: Icons.gpp_good_rounded,
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||||
onPressed: () async {
|
onPressed: null,
|
||||||
final String json =
|
),
|
||||||
await DataTransferService.getAppDataAsJson(
|
Padding(
|
||||||
scaffoldMessengerContext,
|
padding: const EdgeInsets.only(top: 30, bottom: 20),
|
||||||
);
|
child: Center(
|
||||||
final result = await DataTransferService.exportData(
|
child: Column(
|
||||||
json,
|
spacing: 4,
|
||||||
'game_tracker-data',
|
children: [
|
||||||
);
|
Padding(
|
||||||
if (!scaffoldMessengerContext.mounted) return;
|
padding: const EdgeInsets.only(bottom: 12),
|
||||||
showExportSnackBar(
|
child: Row(
|
||||||
context: scaffoldMessengerContext,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
result: result,
|
spacing: 40,
|
||||||
);
|
children: [
|
||||||
},
|
GestureDetector(
|
||||||
),
|
child: const Icon(Icons.language),
|
||||||
SettingsListTile(
|
onTap: () => {
|
||||||
title: loc.import_data,
|
launchUrl(Uri.parse('https://liquid-dev.de')),
|
||||||
icon: Icons.download,
|
},
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
|
||||||
onPressed: () async {
|
|
||||||
final result = await DataTransferService.importData(
|
|
||||||
scaffoldMessengerContext,
|
|
||||||
);
|
|
||||||
if (!scaffoldMessengerContext.mounted) return;
|
|
||||||
showImportSnackBar(
|
|
||||||
context: scaffoldMessengerContext,
|
|
||||||
result: result,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
SettingsListTile(
|
|
||||||
title: loc.delete_all_data,
|
|
||||||
icon: Icons.delete,
|
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
|
||||||
onPressed: () {
|
|
||||||
showDialog<bool>(
|
|
||||||
context: scaffoldMessengerContext,
|
|
||||||
builder: (dialogContext) => AlertDialog(
|
|
||||||
title: Text('${loc.delete_all_data}?'),
|
|
||||||
content: Text(loc.this_cannot_be_undone),
|
|
||||||
actions: [
|
|
||||||
TextButton(
|
|
||||||
onPressed: () =>
|
|
||||||
Navigator.of(dialogContext).pop(false),
|
|
||||||
child: Text(loc.cancel),
|
|
||||||
),
|
),
|
||||||
TextButton(
|
GestureDetector(
|
||||||
onPressed: () =>
|
child: const FaIcon(FontAwesomeIcons.github),
|
||||||
Navigator.of(dialogContext).pop(true),
|
onTap: () => {
|
||||||
child: Text(loc.delete),
|
launchUrl(
|
||||||
|
Uri.parse(
|
||||||
|
'https://github.com/liquiddevelopmentde',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
),
|
||||||
|
GestureDetector(
|
||||||
|
child: Icon(
|
||||||
|
Platform.isIOS
|
||||||
|
? CupertinoIcons.mail_solid
|
||||||
|
: Icons.email,
|
||||||
|
),
|
||||||
|
onTap: () => launchUrl(
|
||||||
|
Uri.parse('mailto:hi@liquid-dev.de'),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
).then((confirmed) {
|
|
||||||
if (confirmed == true &&
|
|
||||||
scaffoldMessengerContext.mounted) {
|
|
||||||
DataTransferService.deleteAllData(
|
|
||||||
scaffoldMessengerContext,
|
|
||||||
);
|
|
||||||
showSnackbar(
|
|
||||||
context: scaffoldMessengerContext,
|
|
||||||
message: AppLocalizations.of(
|
|
||||||
scaffoldMessengerContext,
|
|
||||||
).data_successfully_deleted,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(
|
|
||||||
left: 16,
|
|
||||||
top: 10,
|
|
||||||
bottom: 10,
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
textAlign: TextAlign.start,
|
|
||||||
loc.legal,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontSize: 22,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
),
|
||||||
),
|
Text(
|
||||||
),
|
'© ${DateFormat('yyyy').format(DateTime.now())} Liquid Development',
|
||||||
SettingsListTile(
|
style: TextStyle(
|
||||||
title: loc.licenses,
|
color: Colors.grey.shade600,
|
||||||
icon: Icons.insert_drive_file,
|
fontSize: 14,
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
fontWeight: FontWeight.w600,
|
||||||
onPressed: () {
|
|
||||||
Navigator.of(context).push(
|
|
||||||
MaterialPageRoute(
|
|
||||||
builder: (context) => const LicensesView(),
|
|
||||||
),
|
),
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
SettingsListTile(
|
|
||||||
title: loc.legal_notice,
|
|
||||||
icon: Icons.account_balance_sharp,
|
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
|
||||||
onPressed: null,
|
|
||||||
),
|
|
||||||
SettingsListTile(
|
|
||||||
title: loc.privacy_policy,
|
|
||||||
icon: Icons.gpp_good_rounded,
|
|
||||||
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
|
|
||||||
onPressed: null,
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(top: 30, bottom: 20),
|
|
||||||
child: Center(
|
|
||||||
child: Column(
|
|
||||||
spacing: 4,
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(bottom: 12),
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
spacing: 40,
|
|
||||||
children: [
|
|
||||||
GestureDetector(
|
|
||||||
child: const Icon(Icons.language),
|
|
||||||
onTap: () => {
|
|
||||||
launchUrl(
|
|
||||||
Uri.parse('https://liquid-dev.de'),
|
|
||||||
),
|
|
||||||
},
|
|
||||||
),
|
|
||||||
GestureDetector(
|
|
||||||
child: const FaIcon(FontAwesomeIcons.github),
|
|
||||||
onTap: () => {
|
|
||||||
launchUrl(
|
|
||||||
Uri.parse(
|
|
||||||
'https://github.com/liquiddevelopmentde',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
},
|
|
||||||
),
|
|
||||||
GestureDetector(
|
|
||||||
child: Icon(
|
|
||||||
Platform.isIOS
|
|
||||||
? CupertinoIcons.mail_solid
|
|
||||||
: Icons.email,
|
|
||||||
),
|
|
||||||
onTap: () => launchUrl(
|
|
||||||
Uri.parse('mailto:hi@liquid-dev.de'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'© ${DateFormat('yyyy').format(DateTime.now())} Liquid Development',
|
|
||||||
style: TextStyle(
|
|
||||||
color: Colors.grey.shade600,
|
|
||||||
fontSize: 14,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'Version ${_packageInfo.version} (${_packageInfo.buildNumber})',
|
|
||||||
style: TextStyle(
|
|
||||||
color: Colors.grey.shade600,
|
|
||||||
fontSize: 14,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
Text(
|
||||||
|
'Version ${_packageInfo.version} (${_packageInfo.buildNumber})',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.grey.shade600,
|
||||||
|
fontSize: 14,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
);
|
),
|
||||||
},
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Displays a snackbar based on the import result.
|
/// Displays a snackbar based on the import result.
|
||||||
///
|
///
|
||||||
/// [context] The BuildContext to show the snackbar in.
|
|
||||||
/// [result] The result of the import operation.
|
/// [result] The result of the import operation.
|
||||||
void showImportSnackBar({
|
void showImportSnackBar({
|
||||||
required BuildContext context,
|
|
||||||
required ImportResult result,
|
required ImportResult result,
|
||||||
}) {
|
}) {
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
switch (result) {
|
switch (result) {
|
||||||
case ImportResult.success:
|
case ImportResult.success:
|
||||||
showSnackbar(context: context, message: loc.data_successfully_imported);
|
showSnackbar(message: loc.data_successfully_imported);
|
||||||
case ImportResult.invalidSchema:
|
case ImportResult.invalidSchema:
|
||||||
showSnackbar(context: context, message: loc.invalid_schema);
|
showSnackbar(message: loc.invalid_schema);
|
||||||
case ImportResult.fileReadError:
|
case ImportResult.fileReadError:
|
||||||
showSnackbar(context: context, message: loc.error_reading_file);
|
showSnackbar(message: loc.error_reading_file);
|
||||||
case ImportResult.canceled:
|
case ImportResult.canceled:
|
||||||
showSnackbar(context: context, message: loc.import_canceled);
|
showSnackbar(message: loc.import_canceled);
|
||||||
case ImportResult.formatException:
|
case ImportResult.formatException:
|
||||||
showSnackbar(context: context, message: loc.format_exception);
|
showSnackbar(message: loc.format_exception);
|
||||||
case ImportResult.unknownException:
|
case ImportResult.unknownException:
|
||||||
showSnackbar(context: context, message: loc.unknown_exception);
|
showSnackbar(message: loc.unknown_exception);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Displays a snackbar based on the export result.
|
/// Displays a snackbar based on the export result.
|
||||||
///
|
///
|
||||||
/// [context] The BuildContext to show the snackbar in.
|
|
||||||
/// [result] The result of the export operation.
|
/// [result] The result of the export operation.
|
||||||
void showExportSnackBar({
|
void showExportSnackBar({
|
||||||
required BuildContext context,
|
|
||||||
required ExportResult result,
|
required ExportResult result,
|
||||||
}) {
|
}) {
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
switch (result) {
|
switch (result) {
|
||||||
case ExportResult.success:
|
case ExportResult.success:
|
||||||
showSnackbar(context: context, message: loc.data_successfully_exported);
|
showSnackbar(message: loc.data_successfully_exported);
|
||||||
case ExportResult.canceled:
|
case ExportResult.canceled:
|
||||||
showSnackbar(context: context, message: loc.export_canceled);
|
showSnackbar(message: loc.export_canceled);
|
||||||
case ExportResult.unknownException:
|
case ExportResult.unknownException:
|
||||||
showSnackbar(context: context, message: loc.unknown_exception);
|
showSnackbar(message: loc.unknown_exception);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Displays a snackbar with the given message and optional action.
|
/// Displays a snackbar with the given message and optional action.
|
||||||
///
|
///
|
||||||
/// [context] The BuildContext to show the snackbar in.
|
|
||||||
/// [message] The message to display in the snackbar.
|
/// [message] The message to display in the snackbar.
|
||||||
/// [duration] The duration for which the snackbar is displayed.
|
/// [duration] The duration for which the snackbar is displayed.
|
||||||
/// [action] An optional callback function to execute when the action button is pressed.
|
/// [action] An optional callback function to execute when the action button is pressed.
|
||||||
void showSnackbar({
|
void showSnackbar({
|
||||||
required BuildContext context,
|
|
||||||
required String message,
|
required String message,
|
||||||
Duration duration = const Duration(seconds: 3),
|
Duration duration = const Duration(seconds: 3),
|
||||||
VoidCallback? action,
|
VoidCallback? action,
|
||||||
}) {
|
}) {
|
||||||
if (!context.mounted) return;
|
|
||||||
|
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
ScaffoldMessenger.of(context).hideCurrentSnackBar();
|
final messenger = _scaffoldMessengerKey.currentState!;
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
messenger.hideCurrentSnackBar();
|
||||||
|
messenger.showSnackBar(
|
||||||
SnackBar(
|
SnackBar(
|
||||||
content: Text(message, style: const TextStyle(color: Colors.white)),
|
content: Text(message, style: const TextStyle(color: Colors.white)),
|
||||||
backgroundColor: CustomTheme.onBoxColor,
|
backgroundColor: CustomTheme.onBoxColor,
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class StatisticsView extends StatefulWidget {
|
class StatisticsView extends StatefulWidget {
|
||||||
/// A view that displays player statistics
|
|
||||||
const StatisticsView({super.key});
|
const StatisticsView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:skeletonizer/skeletonizer.dart';
|
import 'package:skeletonizer/skeletonizer.dart';
|
||||||
|
|
||||||
|
/// A widget that provides a skeleton loading effect to its child widget tree.
|
||||||
|
/// - [child]: The widget tree to apply the skeleton effect to.
|
||||||
|
/// - [enabled]: A boolean to enable or disable the skeleton effect.
|
||||||
|
/// - [fixLayoutBuilder]: A boolean to fix the layout builder for AnimatedSwitcher.
|
||||||
class AppSkeleton extends StatefulWidget {
|
class AppSkeleton extends StatefulWidget {
|
||||||
/// A widget that provides a skeleton loading effect to its child widget tree.
|
|
||||||
/// - [child]: The widget tree to apply the skeleton effect to.
|
|
||||||
/// - [enabled]: A boolean to enable or disable the skeleton effect.
|
|
||||||
/// - [fixLayoutBuilder]: A boolean to fix the layout builder for AnimatedSwitcher.
|
|
||||||
const AppSkeleton({
|
const AppSkeleton({
|
||||||
super.key,
|
super.key,
|
||||||
required this.child,
|
required this.child,
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
import 'package:game_tracker/core/enums.dart';
|
import 'package:game_tracker/core/enums.dart';
|
||||||
|
|
||||||
|
/// A custom button widget that is designed to have a width relative to the screen size.
|
||||||
|
/// It supports three types of buttons: primary, secondary, and text buttons.
|
||||||
|
/// - [text]: The text to display on the button.
|
||||||
|
/// - [buttonType]: The type of button to display. Defaults to [ButtonType.primary].
|
||||||
|
/// - [sizeRelativeToWidth]: The size of the button relative to the width of the screen.
|
||||||
|
/// - [onPressed]: The callback to be invoked when the button is pressed.
|
||||||
class CustomWidthButton extends StatelessWidget {
|
class CustomWidthButton extends StatelessWidget {
|
||||||
/// A custom button widget that is designed to have a width relative to the screen size.
|
|
||||||
/// It supports three types of buttons: primary, secondary, and text buttons.
|
|
||||||
/// - [text]: The text to display on the button.
|
|
||||||
/// - [buttonType]: The type of button to display. Defaults to [ButtonType.primary].
|
|
||||||
/// - [sizeRelativeToWidth]: The size of the button relative to the width of the screen.
|
|
||||||
/// - [onPressed]: The callback to be invoked when the button is pressed.
|
|
||||||
const CustomWidthButton({
|
const CustomWidthButton({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
/// A button for the main menu with an optional icon and a press animation.
|
||||||
|
/// - [text]: The text of the button.
|
||||||
|
/// - [icon]: The icon of the button.
|
||||||
|
/// - [onPressed]: The callback to be invoked when the button is pressed.
|
||||||
class MainMenuButton extends StatefulWidget {
|
class MainMenuButton extends StatefulWidget {
|
||||||
/// A button for the main menu with an optional icon and a press animation.
|
|
||||||
/// - [text]: The text of the button.
|
|
||||||
/// - [icon]: The icon of the button.
|
|
||||||
/// - [onPressed]: The callback to be invoked when the button is pressed.
|
|
||||||
const MainMenuButton({
|
const MainMenuButton({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A button widget designed for quick creating matches in the [HomeView]
|
||||||
|
/// - [text]: The text to display on the button.
|
||||||
|
/// - [onPressed]: The callback to be invoked when the button is pressed.
|
||||||
class QuickCreateButton extends StatefulWidget {
|
class QuickCreateButton extends StatefulWidget {
|
||||||
/// A button widget designed for quick creating matches in the [HomeView]
|
|
||||||
/// - [text]: The text to display on the button.
|
|
||||||
/// - [onPressed]: The callback to be invoked when the button is pressed.
|
|
||||||
const QuickCreateButton({
|
const QuickCreateButton({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A navigation bar item widget that represents a single tab in a navigation bar.
|
||||||
|
/// - [index]: The index of the tab.
|
||||||
|
/// - [isSelected]: A boolean indicating whether the tab is currently selected.
|
||||||
|
/// - [icon]: The icon to display for the tab.
|
||||||
|
/// - [label]: The label to display for the tab.
|
||||||
|
/// - [onTabTapped]: The callback to be invoked when the tab is tapped.
|
||||||
class NavbarItem extends StatefulWidget {
|
class NavbarItem extends StatefulWidget {
|
||||||
/// A navigation bar item widget that represents a single tab in a navigation bar.
|
|
||||||
/// - [index]: The index of the tab.
|
|
||||||
/// - [isSelected]: A boolean indicating whether the tab is currently selected.
|
|
||||||
/// - [icon]: The icon to display for the tab.
|
|
||||||
/// - [label]: The label to display for the tab.
|
|
||||||
/// - [onTabTapped]: The callback to be invoked when the tab is tapped.
|
|
||||||
const NavbarItem({
|
const NavbarItem({
|
||||||
super.key,
|
super.key,
|
||||||
required this.index,
|
required this.index,
|
||||||
|
|||||||
@@ -11,14 +11,14 @@ import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart';
|
|||||||
import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
/// A widget that allows users to select players from a list,
|
||||||
|
/// with search functionality and the ability to add new players.
|
||||||
|
/// - [availablePlayers]: An optional list of players to choose from. If null, all
|
||||||
|
/// players from the database are used.
|
||||||
|
/// - [initialSelectedPlayers]: An optional list of players that should be pre-selected.
|
||||||
|
/// - [onChanged]: A callback function that is invoked whenever the selection changes,
|
||||||
|
/// providing the updated list of selected players.
|
||||||
class PlayerSelection extends StatefulWidget {
|
class PlayerSelection extends StatefulWidget {
|
||||||
/// A widget that allows users to select players from a list,
|
|
||||||
/// with search functionality and the ability to add new players.
|
|
||||||
/// - [availablePlayers]: An optional list of players to choose from. If null,
|
|
||||||
/// all players from the database are used.
|
|
||||||
/// - [initialSelectedPlayers]: An optional list of players that should be pre-selected.
|
|
||||||
/// - [onChanged]: A callback function that is invoked whenever the selection
|
|
||||||
/// changes, providing the updated list of selected players.
|
|
||||||
const PlayerSelection({
|
const PlayerSelection({
|
||||||
super.key,
|
super.key,
|
||||||
this.availablePlayers,
|
this.availablePlayers,
|
||||||
@@ -70,6 +70,7 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
super.initState();
|
super.initState();
|
||||||
db = Provider.of<AppDatabase>(context, listen: false);
|
db = Provider.of<AppDatabase>(context, listen: false);
|
||||||
suggestedPlayers = skeletonData;
|
suggestedPlayers = skeletonData;
|
||||||
|
selectedPlayers = widget.initialSelectedPlayers ?? [];
|
||||||
loadPlayerList();
|
loadPlayerList();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,7 +100,7 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
if (value.isEmpty) {
|
if (value.isEmpty) {
|
||||||
// If the search is empty, it shows all unselected players.
|
// If the search is empty, it shows all unselected players.
|
||||||
suggestedPlayers = allPlayers.where((player) {
|
suggestedPlayers = allPlayers.where((player) {
|
||||||
return !selectedPlayers.contains(player);
|
return !selectedPlayers.any((p) => p.id == player.id);
|
||||||
}).toList();
|
}).toList();
|
||||||
} else {
|
} else {
|
||||||
// If there is input, it filters by name match (case-insensitive) and ensures
|
// If there is input, it filters by name match (case-insensitive) and ensures
|
||||||
@@ -108,9 +109,7 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
final bool nameMatches = player.name.toLowerCase().contains(
|
final bool nameMatches = player.name.toLowerCase().contains(
|
||||||
value.toLowerCase(),
|
value.toLowerCase(),
|
||||||
);
|
);
|
||||||
final bool isNotSelected = !selectedPlayers.contains(
|
final bool isNotSelected = !selectedPlayers.any((p) => p.id == player.id);
|
||||||
player,
|
|
||||||
);
|
|
||||||
return nameMatches && isNotSelected;
|
return nameMatches && isNotSelected;
|
||||||
}).toList();
|
}).toList();
|
||||||
}
|
}
|
||||||
@@ -125,46 +124,49 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
const SizedBox(height: 10),
|
const SizedBox(height: 10),
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 50,
|
height: 50,
|
||||||
child: selectedPlayers.isEmpty
|
child: AppSkeleton(
|
||||||
? Center(child: Text(loc.no_players_selected))
|
enabled: isLoading,
|
||||||
: SingleChildScrollView(
|
child: selectedPlayers.isEmpty
|
||||||
scrollDirection: Axis.horizontal,
|
? Center(child: Text(loc.no_players_selected))
|
||||||
child: Row(
|
: SingleChildScrollView(
|
||||||
children: [
|
scrollDirection: Axis.horizontal,
|
||||||
for (var player in selectedPlayers)
|
child: Row(
|
||||||
Padding(
|
children: [
|
||||||
padding: const EdgeInsets.only(right: 8.0),
|
for (var player in selectedPlayers)
|
||||||
child: TextIconTile(
|
Padding(
|
||||||
text: player.name,
|
padding: const EdgeInsets.only(right: 8.0),
|
||||||
onIconTap: () {
|
child: TextIconTile(
|
||||||
setState(() {
|
text: player.name,
|
||||||
// Removes the player from the selection and notifies the parent.
|
onIconTap: () {
|
||||||
selectedPlayers.remove(player);
|
setState(() {
|
||||||
widget.onChanged([...selectedPlayers]);
|
// Removes the player from the selection and notifies the parent.
|
||||||
|
selectedPlayers.remove(player);
|
||||||
|
widget.onChanged([...selectedPlayers]);
|
||||||
|
|
||||||
// Get the current search query
|
// Get the current search query
|
||||||
final currentSearch = _searchBarController
|
final currentSearch = _searchBarController
|
||||||
.text
|
.text
|
||||||
.toLowerCase();
|
.toLowerCase();
|
||||||
|
|
||||||
// If the player matches the current search query (or search is empty),
|
// If the player matches the current search query (or search is empty),
|
||||||
// they are added back to the `suggestedPlayers` and the list is re-sorted.
|
// they are added back to the `suggestedPlayers` and the list is re-sorted.
|
||||||
if (currentSearch.isEmpty ||
|
if (currentSearch.isEmpty ||
|
||||||
player.name.toLowerCase().contains(
|
player.name.toLowerCase().contains(
|
||||||
currentSearch,
|
currentSearch,
|
||||||
)) {
|
)) {
|
||||||
suggestedPlayers.add(player);
|
suggestedPlayers.add(player);
|
||||||
suggestedPlayers.sort(
|
suggestedPlayers.sort(
|
||||||
(a, b) => a.name.compareTo(b.name),
|
(a, b) => a.name.compareTo(b.name),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 10),
|
const SizedBox(height: 10),
|
||||||
Text(
|
Text(
|
||||||
@@ -244,7 +246,21 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
// Otherwise, use the loaded players from the database.
|
// Otherwise, use the loaded players from the database.
|
||||||
loadedPlayers.sort((a, b) => a.name.compareTo(b.name));
|
loadedPlayers.sort((a, b) => a.name.compareTo(b.name));
|
||||||
allPlayers = [...loadedPlayers];
|
allPlayers = [...loadedPlayers];
|
||||||
suggestedPlayers = [...loadedPlayers];
|
if (widget.initialSelectedPlayers != null) {
|
||||||
|
// Excludes already selected players from the suggested players list.
|
||||||
|
suggestedPlayers = loadedPlayers.where((p) => !widget.initialSelectedPlayers!.any((ip) => ip.id == p.id)).toList();
|
||||||
|
// Ensures that only players available for selection are pre-selected.
|
||||||
|
selectedPlayers = widget.initialSelectedPlayers!
|
||||||
|
.where(
|
||||||
|
(p) => allPlayers.any(
|
||||||
|
(available) => available.id == p.id,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList();
|
||||||
|
} else {
|
||||||
|
// If no initial selection, all loaded players are suggested.
|
||||||
|
suggestedPlayers = [...loadedPlayers];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
});
|
});
|
||||||
@@ -295,7 +311,6 @@ class _PlayerSelectionState extends State<PlayerSelection> {
|
|||||||
/// [message] - The message to display in the snackbar.
|
/// [message] - The message to display in the snackbar.
|
||||||
void showSnackBarMessage(String message) {
|
void showSnackBarMessage(String message) {
|
||||||
if (!context.mounted) return;
|
if (!context.mounted) return;
|
||||||
ScaffoldMessenger.of(context).hideCurrentSnackBar();
|
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
SnackBar(
|
SnackBar(
|
||||||
backgroundColor: CustomTheme.boxColor,
|
backgroundColor: CustomTheme.boxColor,
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A custom search bar widget that encapsulates a [SearchBar] with additional customization options.
|
||||||
|
/// - [controller]: The controller for the search bar's text input.
|
||||||
|
/// - [hintText]: The hint text displayed in the search bar when it is empty.
|
||||||
|
/// - [trailingButtonShown]: Whether to show the trailing button.
|
||||||
|
/// - [trailingButtonicon]: The icon for the trailing button.
|
||||||
|
/// - [trailingButtonEnabled]: Whether the trailing button is in enabled state.
|
||||||
|
/// - [onTrailingButtonPressed]: The callback invoked when the trailing button is pressed.
|
||||||
|
/// - [onChanged]: The callback invoked when the text in the search bar changes.
|
||||||
|
/// - [constraints]: The constraints for the search bar.
|
||||||
class CustomSearchBar extends StatelessWidget {
|
class CustomSearchBar extends StatelessWidget {
|
||||||
/// A custom search bar widget that encapsulates a [SearchBar] with additional customization options.
|
|
||||||
/// - [controller]: The controller for the search bar's text input.
|
|
||||||
/// - [hintText]: The hint text displayed in the search bar when it is empty.
|
|
||||||
/// - [trailingButtonShown]: Whether to show the trailing button.
|
|
||||||
/// - [trailingButtonicon]: The icon for the trailing button.
|
|
||||||
/// - [trailingButtonEnabled]: Whether the trailing button is in enabled state.
|
|
||||||
/// - [onTrailingButtonPressed]: The callback invoked when the trailing button is pressed.
|
|
||||||
/// - [onChanged]: The callback invoked when the text in the search bar changes.
|
|
||||||
/// - [constraints]: The constraints for the search bar.
|
|
||||||
const CustomSearchBar({
|
const CustomSearchBar({
|
||||||
super.key,
|
super.key,
|
||||||
required this.controller,
|
required this.controller,
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A custom text input field widget that encapsulates a [TextField] with specific styling.
|
||||||
|
/// - [controller]: The controller for the text input field.
|
||||||
|
/// - [onChanged]: The callback invoked when the text in the field changes.
|
||||||
|
/// - [hintText]: The hint text displayed in the text input field when it is empty
|
||||||
class TextInputField extends StatelessWidget {
|
class TextInputField extends StatelessWidget {
|
||||||
/// A custom text input field widget that encapsulates a [TextField] with specific styling.
|
|
||||||
/// - [controller]: The controller for the text input field.
|
|
||||||
/// - [onChanged]: The callback invoked when the text in the field changes.
|
|
||||||
/// - [hintText]: The hint text displayed in the text input field when it is empty
|
|
||||||
const TextInputField({
|
const TextInputField({
|
||||||
super.key,
|
super.key,
|
||||||
required this.controller,
|
required this.controller,
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A tile widget that allows users to choose an option by tapping on it.
|
||||||
|
/// - [title]: The title text displayed on the tile.
|
||||||
|
/// - [trailingText]: Optional trailing text displayed on the tile.
|
||||||
|
/// - [onPressed]: The callback invoked when the tile is tapped.
|
||||||
class ChooseTile extends StatefulWidget {
|
class ChooseTile extends StatefulWidget {
|
||||||
/// A tile widget that allows users to choose an option by tapping on it.
|
|
||||||
/// - [title]: The title text displayed on the tile.
|
|
||||||
/// - [trailingText]: Optional trailing text displayed on the tile.
|
|
||||||
/// - [onPressed]: The callback invoked when the tile is tapped.
|
|
||||||
const ChooseTile({
|
const ChooseTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.title,
|
required this.title,
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A custom radio list tile widget that encapsulates a [Radio] button with additional styling and functionality.
|
||||||
|
/// - [text]: The text to display next to the radio button.
|
||||||
|
/// - [value]: The value associated with the radio button.
|
||||||
|
/// - [onContainerTap]: The callback invoked when the container is tapped.
|
||||||
class CustomRadioListTile<T> extends StatelessWidget {
|
class CustomRadioListTile<T> extends StatelessWidget {
|
||||||
/// A custom radio list tile widget that encapsulates a [Radio] button with additional styling and functionality.
|
|
||||||
/// - [text]: The text to display next to the radio button.
|
|
||||||
/// - [value]: The value associated with the radio button.
|
|
||||||
/// - [onContainerTap]: The callback invoked when the container is tapped.
|
|
||||||
const CustomRadioListTile({
|
const CustomRadioListTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
|||||||
@@ -3,11 +3,12 @@ import 'package:game_tracker/core/custom_theme.dart';
|
|||||||
import 'package:game_tracker/data/dto/group.dart';
|
import 'package:game_tracker/data/dto/group.dart';
|
||||||
import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart';
|
||||||
|
|
||||||
|
/// A tile widget that displays information about a group, including its name and members.
|
||||||
|
/// - [group]: The group data to be displayed.
|
||||||
|
/// - [isHighlighted]: Whether the tile should be highlighted.
|
||||||
|
/// - [onTap]: An optional callback function to handle tap events.
|
||||||
class GroupTile extends StatelessWidget {
|
class GroupTile extends StatelessWidget {
|
||||||
/// A tile widget that displays information about a group, including its name and members.
|
const GroupTile({super.key, required this.group, this.isHighlighted = false, this.onTap});
|
||||||
/// - [group]: The group data to be displayed.
|
|
||||||
/// - [isHighlighted]: Whether the tile should be highlighted.
|
|
||||||
const GroupTile({super.key, required this.group, this.isHighlighted = false});
|
|
||||||
|
|
||||||
/// The group data to be displayed.
|
/// The group data to be displayed.
|
||||||
final Group group;
|
final Group group;
|
||||||
@@ -15,61 +16,67 @@ class GroupTile extends StatelessWidget {
|
|||||||
/// Whether the tile should be highlighted.
|
/// Whether the tile should be highlighted.
|
||||||
final bool isHighlighted;
|
final bool isHighlighted;
|
||||||
|
|
||||||
|
/// Callback function to handle tap events.
|
||||||
|
final VoidCallback? onTap;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return AnimatedContainer(
|
return GestureDetector(
|
||||||
margin: CustomTheme.standardMargin,
|
onTap: onTap,
|
||||||
padding: const EdgeInsets.symmetric(vertical: 5, horizontal: 10),
|
child: AnimatedContainer(
|
||||||
decoration: isHighlighted
|
margin: CustomTheme.standardMargin,
|
||||||
? CustomTheme.highlightedBoxDecoration
|
padding: const EdgeInsets.symmetric(vertical: 5, horizontal: 10),
|
||||||
: CustomTheme.standardBoxDecoration,
|
decoration: isHighlighted
|
||||||
duration: const Duration(milliseconds: 150),
|
? CustomTheme.highlightedBoxDecoration
|
||||||
child: Column(
|
: CustomTheme.standardBoxDecoration,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
duration: const Duration(milliseconds: 150),
|
||||||
children: [
|
child: Column(
|
||||||
Row(
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
children: [
|
||||||
children: [
|
Row(
|
||||||
Flexible(
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
child: Text(
|
children: [
|
||||||
group.name,
|
Flexible(
|
||||||
overflow: TextOverflow.ellipsis,
|
child: Text(
|
||||||
style: const TextStyle(
|
group.name,
|
||||||
fontWeight: FontWeight.bold,
|
overflow: TextOverflow.ellipsis,
|
||||||
fontSize: 18,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
'${group.members.length}',
|
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontWeight: FontWeight.w900,
|
fontWeight: FontWeight.bold,
|
||||||
fontSize: 18,
|
fontSize: 18,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 3),
|
),
|
||||||
const Icon(Icons.group, size: 22),
|
Row(
|
||||||
],
|
children: [
|
||||||
),
|
Text(
|
||||||
],
|
'${group.members.length}',
|
||||||
),
|
style: const TextStyle(
|
||||||
const SizedBox(height: 5),
|
fontWeight: FontWeight.w900,
|
||||||
Wrap(
|
fontSize: 18,
|
||||||
alignment: WrapAlignment.start,
|
),
|
||||||
crossAxisAlignment: WrapCrossAlignment.start,
|
),
|
||||||
spacing: 12.0,
|
const SizedBox(width: 3),
|
||||||
runSpacing: 8.0,
|
const Icon(Icons.group, size: 22),
|
||||||
children: <Widget>[
|
],
|
||||||
for (var member in [
|
),
|
||||||
...group.members,
|
],
|
||||||
]..sort((a, b) => a.name.compareTo(b.name)))
|
),
|
||||||
TextIconTile(text: member.name, iconEnabled: false),
|
const SizedBox(height: 5),
|
||||||
],
|
Wrap(
|
||||||
),
|
alignment: WrapAlignment.start,
|
||||||
const SizedBox(height: 2.5),
|
crossAxisAlignment: WrapCrossAlignment.start,
|
||||||
],
|
spacing: 12.0,
|
||||||
|
runSpacing: 8.0,
|
||||||
|
children: <Widget>[
|
||||||
|
for (var member in [
|
||||||
|
...group.members,
|
||||||
|
]..sort((a, b) => a.name.compareTo(b.name)))
|
||||||
|
TextIconTile(text: member.name, iconEnabled: false),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 2.5),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A tile widget that displays a title with an icon and some content below it.
|
||||||
|
/// - [title]: The title text displayed on the tile.
|
||||||
|
/// - [icon]: The icon displayed next to the title.
|
||||||
|
/// - [content]: The content widget displayed below the title.
|
||||||
|
/// - [padding]: Optional padding for the tile content.
|
||||||
|
/// - [height]: Optional height for the tile.
|
||||||
|
/// - [width]: Optional width for the tile.
|
||||||
class InfoTile extends StatefulWidget {
|
class InfoTile extends StatefulWidget {
|
||||||
/// A tile widget that displays a title with an icon and some content below it.
|
|
||||||
/// - [title]: The title text displayed on the tile.
|
|
||||||
/// - [icon]: The icon displayed next to the title.
|
|
||||||
/// - [content]: The content widget displayed below the title.
|
|
||||||
/// - [padding]: Optional padding for the tile content.
|
|
||||||
/// - [height]: Optional height for the tile.
|
|
||||||
/// - [width]: Optional width for the tile.
|
|
||||||
const InfoTile({
|
const InfoTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.title,
|
required this.title,
|
||||||
|
|||||||
@@ -4,13 +4,10 @@ import 'package:game_tracker/presentation/views/main_menu/settings_view/licenses
|
|||||||
import 'package:game_tracker/presentation/views/main_menu/settings_view/licenses/oss_licenses.dart';
|
import 'package:game_tracker/presentation/views/main_menu/settings_view/licenses/oss_licenses.dart';
|
||||||
|
|
||||||
class LicenseTile extends StatelessWidget {
|
class LicenseTile extends StatelessWidget {
|
||||||
/// A tile widget that displays information about a software package license.
|
|
||||||
/// - [package]: The package data to be displayed.
|
|
||||||
const LicenseTile({super.key, required this.package});
|
|
||||||
|
|
||||||
/// The package data to be displayed.
|
|
||||||
final Package package;
|
final Package package;
|
||||||
|
|
||||||
|
const LicenseTile({super.key, required this.package});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
|
|||||||
95
lib/presentation/widgets/tiles/match_summary_tile.dart
Normal file
95
lib/presentation/widgets/tiles/match_summary_tile.dart
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
import 'package:skeletonizer/skeletonizer.dart';
|
||||||
|
|
||||||
|
class MatchSummaryTile extends StatefulWidget {
|
||||||
|
final String matchTitle;
|
||||||
|
final String game;
|
||||||
|
final String ruleset;
|
||||||
|
final String players;
|
||||||
|
final String winner;
|
||||||
|
|
||||||
|
const MatchSummaryTile({
|
||||||
|
super.key,
|
||||||
|
required this.matchTitle,
|
||||||
|
required this.game,
|
||||||
|
required this.ruleset,
|
||||||
|
required this.players,
|
||||||
|
required this.winner,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<MatchSummaryTile> createState() => _MatchSummaryTileState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MatchSummaryTileState extends State<MatchSummaryTile> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
widget.matchTitle,
|
||||||
|
style: const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 5),
|
||||||
|
Text(
|
||||||
|
widget.game,
|
||||||
|
style: const TextStyle(fontSize: 14, color: Colors.grey),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 5),
|
||||||
|
Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 4),
|
||||||
|
height: 20,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(4),
|
||||||
|
color: CustomTheme.primaryColor,
|
||||||
|
),
|
||||||
|
child: Skeleton.ignore(
|
||||||
|
child: Text(
|
||||||
|
widget.ruleset,
|
||||||
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Center(
|
||||||
|
heightFactor: 1.5,
|
||||||
|
child: Text(
|
||||||
|
widget.players,
|
||||||
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Center(
|
||||||
|
child: Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 4),
|
||||||
|
width: 220,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(4),
|
||||||
|
color: Colors.yellow.shade300,
|
||||||
|
),
|
||||||
|
child: Skeleton.ignore(
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
const Icon(Icons.emoji_events, color: Colors.black, size: 20),
|
||||||
|
Text(
|
||||||
|
widget.winner,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
color: Colors.black87,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,13 +6,13 @@ import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
|||||||
import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart';
|
||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
|
|
||||||
|
/// A tile widget that displays information about a match, including its name,
|
||||||
|
/// creation date, associated group, winner, and players.
|
||||||
|
/// - [match]: The match data to be displayed.
|
||||||
|
/// - [onTap]: The callback invoked when the tile is tapped.
|
||||||
|
/// - [width]: Optional width for the tile.
|
||||||
|
/// - [compact]: Whether to display the tile in a compact mode
|
||||||
class MatchTile extends StatefulWidget {
|
class MatchTile extends StatefulWidget {
|
||||||
/// A tile widget that displays information about a match, including its name,
|
|
||||||
/// creation date, associated group, winner, and players.
|
|
||||||
/// - [match]: The match data to be displayed.
|
|
||||||
/// - [onTap]: The callback invoked when the tile is tapped.
|
|
||||||
/// - [width]: Optional width for the tile.
|
|
||||||
/// - [compact]: Whether to display the tile in a compact mode
|
|
||||||
const MatchTile({
|
const MatchTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.match,
|
required this.match,
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A tile widget that displays a title with an icon and a numeric value below it.
|
||||||
|
/// - [title]: The title text displayed on the tile.
|
||||||
|
/// - [icon]: The icon displayed next to the title.
|
||||||
|
/// - [value]: The numeric value displayed below the title.
|
||||||
|
/// - [height]: Optional height for the tile.
|
||||||
|
/// - [width]: Optional width for the tile.
|
||||||
|
/// - [padding]: Optional padding for the tile content.
|
||||||
class QuickInfoTile extends StatefulWidget {
|
class QuickInfoTile extends StatefulWidget {
|
||||||
/// A tile widget that displays a title with an icon and a numeric value below it.
|
|
||||||
/// - [title]: The title text displayed on the tile.
|
|
||||||
/// - [icon]: The icon displayed next to the title.
|
|
||||||
/// - [value]: The numeric value displayed below the title.
|
|
||||||
/// - [height]: Optional height for the tile.
|
|
||||||
/// - [width]: Optional width for the tile.
|
|
||||||
/// - [padding]: Optional padding for the tile content.
|
|
||||||
const QuickInfoTile({
|
const QuickInfoTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.title,
|
required this.title,
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A customizable settings list tile widget that displays an icon, title, and an optional suffix widget.
|
||||||
|
/// - [icon]: The icon displayed on the left side of the tile.
|
||||||
|
/// - [title]: The title text displayed next to the icon.
|
||||||
|
/// - [suffixWidget]: An optional widget displayed on the right side of the tile.
|
||||||
|
/// - [onPressed]: The callback invoked when the tile is tapped.
|
||||||
class SettingsListTile extends StatelessWidget {
|
class SettingsListTile extends StatelessWidget {
|
||||||
/// A customizable settings list tile widget that displays an icon, title, and an optional suffix widget.
|
|
||||||
/// - [icon]: The icon displayed on the left side of the tile.
|
|
||||||
/// - [title]: The title text displayed next to the icon.
|
|
||||||
/// - [suffixWidget]: An optional widget displayed on the right side of the tile.
|
|
||||||
/// - [onPressed]: The callback invoked when the tile is tapped.
|
|
||||||
const SettingsListTile({
|
const SettingsListTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.icon,
|
required this.icon,
|
||||||
|
|||||||
@@ -4,14 +4,14 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
import 'package:game_tracker/l10n/generated/app_localizations.dart';
|
||||||
import 'package:game_tracker/presentation/widgets/tiles/info_tile.dart';
|
import 'package:game_tracker/presentation/widgets/tiles/info_tile.dart';
|
||||||
|
|
||||||
|
/// A tile widget that displays statistical data using horizontal bars.
|
||||||
|
/// - [icon]: The icon displayed next to the title.
|
||||||
|
/// - [title]: The title text displayed on the tile.
|
||||||
|
/// - [width]: The width of the tile.
|
||||||
|
/// - [values]: A list of tuples containing labels and their corresponding numeric values.
|
||||||
|
/// - [itemCount]: The maximum number of items to display.
|
||||||
|
/// - [barColor]: The color of the bars representing the values.
|
||||||
class StatisticsTile extends StatelessWidget {
|
class StatisticsTile extends StatelessWidget {
|
||||||
/// A tile widget that displays statistical data using horizontal bars.
|
|
||||||
/// - [icon]: The icon displayed next to the title.
|
|
||||||
/// - [title]: The title text displayed on the tile.
|
|
||||||
/// - [width]: The width of the tile.
|
|
||||||
/// - [values]: A list of tuples containing labels and their corresponding numeric values.
|
|
||||||
/// - [itemCount]: The maximum number of items to display.
|
|
||||||
/// - [barColor]: The color of the bars representing the values.
|
|
||||||
const StatisticsTile({
|
const StatisticsTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.icon,
|
required this.icon,
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A list tile widget that displays text with an optional icon button.
|
||||||
|
/// - [text]: The text to display in the tile.
|
||||||
|
/// - [onPressed]: The callback to be invoked when the icon is pressed.
|
||||||
|
/// - [iconEnabled]: A boolean to determine if the icon should be displayed.
|
||||||
class TextIconListTile extends StatelessWidget {
|
class TextIconListTile extends StatelessWidget {
|
||||||
/// A list tile widget that displays text with an optional icon button.
|
|
||||||
/// - [text]: The text to display in the tile.
|
|
||||||
/// - [onPressed]: The callback to be invoked when the icon is pressed.
|
|
||||||
/// - [iconEnabled]: A boolean to determine if the icon should be displayed.
|
|
||||||
const TextIconListTile({
|
const TextIconListTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A tile widget that displays text with an optional icon that can be tapped.
|
||||||
|
/// - [text]: The text to display in the tile.
|
||||||
|
/// - [iconEnabled]: A boolean to determine if the icon should be displayed.
|
||||||
|
/// - [onIconTap]: The callback to be invoked when the icon is tapped.
|
||||||
class TextIconTile extends StatelessWidget {
|
class TextIconTile extends StatelessWidget {
|
||||||
/// A tile widget that displays text with an optional icon that can be tapped.
|
|
||||||
/// - [text]: The text to display in the tile.
|
|
||||||
/// - [iconEnabled]: A boolean to determine if the icon should be displayed.
|
|
||||||
/// - [onIconTap]: The callback to be invoked when the icon is tapped.
|
|
||||||
const TextIconTile({
|
const TextIconTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:game_tracker/core/custom_theme.dart';
|
import 'package:game_tracker/core/custom_theme.dart';
|
||||||
|
|
||||||
|
/// A list tile widget that displays a title and description, with optional highlighting and badge.
|
||||||
|
/// - [title]: The title text displayed on the tile.
|
||||||
|
/// - [description]: The description text displayed below the title.
|
||||||
|
/// - [onPressed]: The callback invoked when the tile is tapped.
|
||||||
|
/// - [isHighlighted]: A boolean to determine if the tile should be highlighted.
|
||||||
|
/// - [badgeText]: Optional text to display in a badge on the right side of the title.
|
||||||
|
/// - [badgeColor]: Optional color for the badge background.
|
||||||
class TitleDescriptionListTile extends StatelessWidget {
|
class TitleDescriptionListTile extends StatelessWidget {
|
||||||
/// A list tile widget that displays a title and description, with optional highlighting and badge.
|
|
||||||
/// - [title]: The title text displayed on the tile.
|
|
||||||
/// - [description]: The description text displayed below the title.
|
|
||||||
/// - [onPressed]: The callback invoked when the tile is tapped.
|
|
||||||
/// - [isHighlighted]: A boolean to determine if the tile should be highlighted.
|
|
||||||
/// - [badgeText]: Optional text to display in a badge on the right side of the title.
|
|
||||||
/// - [badgeColor]: Optional color for the badge background.
|
|
||||||
const TitleDescriptionListTile({
|
const TitleDescriptionListTile({
|
||||||
super.key,
|
super.key,
|
||||||
required this.title,
|
required this.title,
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
/// A widget that displays a message centered at the top of the screen with an icon, title, and message.
|
||||||
|
/// - [icon]: The icon to display above the title.
|
||||||
|
/// - [title]: The title text to display.
|
||||||
|
/// - [message]: The message text to display below the title.
|
||||||
class TopCenteredMessage extends StatelessWidget {
|
class TopCenteredMessage extends StatelessWidget {
|
||||||
/// A widget that displays a message centered at the top of the screen with an icon, title, and message.
|
|
||||||
/// - [icon]: The icon to display above the title.
|
|
||||||
/// - [title]: The title text to display.
|
|
||||||
/// - [message]: The message text to display below the title.
|
|
||||||
const TopCenteredMessage({
|
const TopCenteredMessage({
|
||||||
super.key,
|
super.key,
|
||||||
required this.icon,
|
required this.icon,
|
||||||
|
|||||||
Reference in New Issue
Block a user