From 4bd38e8daffedc43e79ecf64b1dd6e7b10c4c6ce Mon Sep 17 00:00:00 2001 From: Hajar ELHILALI Date: Thu, 28 May 2026 22:45:10 +0200 Subject: [PATCH] depacer widgets vers presentation --- .../widgets/profile_header_section.dart | 0 .../widgets/profile_recent_games_section.dart | 0 .../{ => presentation}/widgets/profile_stats_row.dart | 0 .../widgets/profile_win_rate_section.dart | 0 client/deepdame/lib/features/profile/profile_screen.dart | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename client/deepdame/lib/features/profile/{ => presentation}/widgets/profile_header_section.dart (100%) rename client/deepdame/lib/features/profile/{ => presentation}/widgets/profile_recent_games_section.dart (100%) rename client/deepdame/lib/features/profile/{ => presentation}/widgets/profile_stats_row.dart (100%) rename client/deepdame/lib/features/profile/{ => presentation}/widgets/profile_win_rate_section.dart (100%) diff --git a/client/deepdame/lib/features/profile/widgets/profile_header_section.dart b/client/deepdame/lib/features/profile/presentation/widgets/profile_header_section.dart similarity index 100% rename from client/deepdame/lib/features/profile/widgets/profile_header_section.dart rename to client/deepdame/lib/features/profile/presentation/widgets/profile_header_section.dart diff --git a/client/deepdame/lib/features/profile/widgets/profile_recent_games_section.dart b/client/deepdame/lib/features/profile/presentation/widgets/profile_recent_games_section.dart similarity index 100% rename from client/deepdame/lib/features/profile/widgets/profile_recent_games_section.dart rename to client/deepdame/lib/features/profile/presentation/widgets/profile_recent_games_section.dart diff --git a/client/deepdame/lib/features/profile/widgets/profile_stats_row.dart b/client/deepdame/lib/features/profile/presentation/widgets/profile_stats_row.dart similarity index 100% rename from client/deepdame/lib/features/profile/widgets/profile_stats_row.dart rename to client/deepdame/lib/features/profile/presentation/widgets/profile_stats_row.dart diff --git a/client/deepdame/lib/features/profile/widgets/profile_win_rate_section.dart b/client/deepdame/lib/features/profile/presentation/widgets/profile_win_rate_section.dart similarity index 100% rename from client/deepdame/lib/features/profile/widgets/profile_win_rate_section.dart rename to client/deepdame/lib/features/profile/presentation/widgets/profile_win_rate_section.dart diff --git a/client/deepdame/lib/features/profile/profile_screen.dart b/client/deepdame/lib/features/profile/profile_screen.dart index db63837..fa4886a 100644 --- a/client/deepdame/lib/features/profile/profile_screen.dart +++ b/client/deepdame/lib/features/profile/profile_screen.dart @@ -1,7 +1,7 @@ -import 'package:deepdame/features/profile/widgets/profile_header_section.dart'; -import 'package:deepdame/features/profile/widgets/profile_recent_games_section.dart'; -import 'package:deepdame/features/profile/widgets/profile_stats_row.dart'; -import 'package:deepdame/features/profile/widgets/profile_win_rate_section.dart'; +import 'package:deepdame/features/profile/presentation/widgets/profile_header_section.dart'; +import 'package:deepdame/features/profile/presentation/widgets/profile_recent_games_section.dart'; +import 'package:deepdame/features/profile/presentation/widgets/profile_stats_row.dart'; +import 'package:deepdame/features/profile/presentation/widgets/profile_win_rate_section.dart'; import 'package:flutter/material.dart'; class ProfileScreen extends StatelessWidget {