diff --git a/app/ios/Podfile.lock b/app/ios/Podfile.lock index 5b2cee48..7611fae2 100644 --- a/app/ios/Podfile.lock +++ b/app/ios/Podfile.lock @@ -461,4 +461,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 9bf7626a50066852dd21123c4db8e9fe30622485 -COCOAPODS: 1.16.2 +COCOAPODS: 1.15.2 diff --git a/app/lib/ui/flow/setting/setting_screen.dart b/app/lib/ui/flow/setting/setting_screen.dart index 6543c417..54652e9d 100644 --- a/app/lib/ui/flow/setting/setting_screen.dart +++ b/app/lib/ui/flow/setting/setting_screen.dart @@ -271,12 +271,13 @@ class _SettingScreenState extends ConsumerState { children: [ _iconButton(context: context, icon: icon), const SizedBox(width: 16), - Text( - title, - style: AppTextStyle.subtitle3 - .copyWith(color: context.colorScheme.textPrimary), + Expanded( + child: Text( + title, + style: AppTextStyle.subtitle3 + .copyWith(color: context.colorScheme.textPrimary), + ), ), - const Spacer(), Icon( Icons.arrow_forward_ios, size: 12,