From 514e0f8064b06852e0feb3fc4c7a4fb4bbc0fe68 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 14:54:06 +0100 Subject: [PATCH] Changed date format --- .../views/main_menu/group_view/group_profile_view.dart | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/views/main_menu/group_view/group_profile_view.dart b/lib/presentation/views/main_menu/group_view/group_profile_view.dart index 1b19b6a..c739973 100644 --- a/lib/presentation/views/main_menu/group_view/group_profile_view.dart +++ b/lib/presentation/views/main_menu/group_view/group_profile_view.dart @@ -126,7 +126,7 @@ class _GroupProfileViewState extends State { ), const SizedBox(height: 5), Text( - "${loc.created_on} ${DateFormat('dd.MM.yyyy').format(widget.group.createdAt)}", + "${loc.created_on} ${DateFormat('MMM d, yyyy').format(widget.group.createdAt)}", style: const TextStyle( fontSize: 12, color: CustomTheme.textColor, diff --git a/pubspec.yaml b/pubspec.yaml index 1ea28cc..8b52ca1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.8+230 +version: 0.0.8+231 environment: sdk: ^3.8.1