Commit 186e9de2702d137ca4853a0e7edc107fbb5b9e1c

Authored by 常守达
1 parent 429075dc

fix(login): 超过一行改滚动为缩放

... ... @@ -419,13 +419,16 @@ class _DeleteAccountBottomSheet extends StatelessWidget {
Center(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 54),
child: MarqueeText(
text: context.l10n.areYouSureYouWantToDeleteYourAccount,
style: TextStyle(
color: context.colors.textPrimary,
fontSize: 16,
fontWeight: FontWeight.w600,
height: 1.2,
child: FittedBox(
fit: BoxFit.scaleDown,
child: Text(
context.l10n.areYouSureYouWantToDeleteYourAccount,
style: TextStyle(
color: context.colors.textPrimary,
fontSize: 16,
fontWeight: FontWeight.w600,
height: 1.2,
),
),
),
),
... ...