Update about us with string keys, restore increased blur amt

This commit is contained in:
Shawn 2023-01-05 15:43:51 -07:00
parent ce4fea8364
commit 9c2c93ea91
2 changed files with 4 additions and 5 deletions

View File

@ -18,7 +18,7 @@ class AppBackdrop extends StatelessWidget {
final double normalStrength = clampDouble(strength, 0, 1); final double normalStrength = clampDouble(strength, 0, 1);
if (settingsLogic.useBlurs) { if (settingsLogic.useBlurs) {
return BackdropFilter( return BackdropFilter(
filter: ImageFilter.blur(sigmaX: normalStrength * 10, sigmaY: normalStrength * 10), filter: ImageFilter.blur(sigmaX: normalStrength * 15, sigmaY: normalStrength * 15),
child: child ?? SizedBox.expand(), child: child ?? SizedBox.expand(),
); );
} }

View File

@ -59,9 +59,8 @@ class AboutDialogContent extends StatelessWidget {
...buildSpan($strings.homeMenuAboutSource('{githubUrl}'), linkSupplants: { ...buildSpan($strings.homeMenuAboutSource('{githubUrl}'), linkSupplants: {
'{githubUrl}': [($strings.homeMenuAboutRepo), 'https://github.com/gskinnerTeam/flutter-wonderous-app'], '{githubUrl}': [($strings.homeMenuAboutRepo), 'https://github.com/gskinnerTeam/flutter-wonderous-app'],
}), }),
...buildSpan(' As explained in our {privacyUrl} we do not collect any personal information.', ...buildSpan(' ${$strings.privacyStatement('{privacyUrl}')}', linkSupplants: {
linkSupplants: { '{privacyUrl}': [$strings.privacyPolicy, 'https://flutter.gskinner.com/wonderous/privacy/'],
'{privacyUrl}': ['Privacy Policy', 'https://flutter.gskinner.com/wonderous/privacy/'],
}), }),
...buildSpan('\n\n'), ...buildSpan('\n\n'),
...buildSpan('${$strings.homeMenuAboutPublic('{metUrl}')} ', linkSupplants: { ...buildSpan('${$strings.homeMenuAboutPublic('{metUrl}')} ', linkSupplants: {