diff --git a/lib/presentation/Screens/charts/screens/chart_screen.dart b/lib/presentation/Screens/charts/screens/chart_screen.dart index 4409f625..dca59307 100644 --- a/lib/presentation/Screens/charts/screens/chart_screen.dart +++ b/lib/presentation/Screens/charts/screens/chart_screen.dart @@ -2225,26 +2225,31 @@ class _ChartScreen1State extends ConsumerState { children: [ GestureDetector( onTap: () => shareCurrentPage(context, _isSharing), - child: Row( children: [ Text( - context.translate( - 'Share', - 'يشارك', - ), + context.translate('Share', 'يشارك'), style: const TextStyle( fontSize: 16, color: Colors.white, ), ), SizedBox(width: 5), - SvgPicture.asset( + _isSharing + ? SizedBox( + width: 24, + height: 24, + child: CircularProgressIndicator( + color: Colors.white, + strokeWidth: 2, + ), + ) // Show loading spinner + : SvgPicture.asset( UaeNumbersAssetPath.share, semanticsLabel: 'share', width: 24, height: 24, - ) + ), ],),), ], ), diff --git a/lib/presentation/routes/drawer_routes/Drawer Items/feedback.dart b/lib/presentation/routes/drawer_routes/Drawer Items/feedback.dart index 20830c6c..39f93a44 100644 --- a/lib/presentation/routes/drawer_routes/Drawer Items/feedback.dart +++ b/lib/presentation/routes/drawer_routes/Drawer Items/feedback.dart @@ -723,10 +723,11 @@ class _FeedbackFormState extends State direction: Axis.horizontal, allowHalfRating: true, itemCount: 5, - itemSize: 30, + itemSize: 28, itemBuilder: (context, index) => Icon( - index < rating ? Icons.star : Icons.star_border, + index < rating ? Icons.star_rounded : Icons.star_border_sharp, color: Colors.amber, + size: 30, ), // itemBuilder: (context, _) => const Icon( // Icons.star,