diff --git a/lib/features/onboarding/presentation/pages/payment_method_page.dart b/lib/features/onboarding/presentation/pages/payment_method_page.dart index 454571d..87b3723 100644 --- a/lib/features/onboarding/presentation/pages/payment_method_page.dart +++ b/lib/features/onboarding/presentation/pages/payment_method_page.dart @@ -133,17 +133,22 @@ class _PaymentMethodPageState extends State { ), ), if (widget.souscription.organisationNom != null) - Column( - crossAxisAlignment: CrossAxisAlignment.end, - children: [ - Text('Organisation', - style: TextStyle(color: textSecondary, fontSize: 11)), - Text( - widget.souscription.organisationNom!, - style: TextStyle( - color: textPrimary, fontSize: 12, fontWeight: FontWeight.w600), - ), - ], + Flexible( + child: Column( + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Text('Organisation', + style: TextStyle(color: textSecondary, fontSize: 11)), + Text( + widget.souscription.organisationNom!, + style: TextStyle( + color: textPrimary, fontSize: 12, fontWeight: FontWeight.w600), + maxLines: 1, + overflow: TextOverflow.ellipsis, + textAlign: TextAlign.end, + ), + ], + ), ), ], ),