pull/253/head
Jorge Coca 3 years ago
parent c7e5cd05f4
commit 75bb4c7dcf

@ -54,7 +54,7 @@ class _MadeWithFlutterAndFirebase extends StatelessWidget {
style: theme.textTheme.bodyText1!.copyWith(color: AppColors.white), style: theme.textTheme.bodyText1!.copyWith(color: AppColors.white),
children: <TextSpan>[ children: <TextSpan>[
TextSpan( TextSpan(
text: l10n.footerMadeWithFlutterLinkText, text: l10n.footerFlutterLinkText,
recognizer: TapGestureRecognizer() recognizer: TapGestureRecognizer()
..onTap = () => openLink('https://flutter.dev'), ..onTap = () => openLink('https://flutter.dev'),
style: const TextStyle( style: const TextStyle(
@ -63,7 +63,7 @@ class _MadeWithFlutterAndFirebase extends StatelessWidget {
), ),
const TextSpan(text: ' & '), const TextSpan(text: ' & '),
TextSpan( TextSpan(
text: l10n.footerMadeWithFirebaseLinkText, text: l10n.footerFirebaseLinkText,
recognizer: TapGestureRecognizer() recognizer: TapGestureRecognizer()
..onTap = () => openLink('https://firebase.google.com'), ..onTap = () => openLink('https://firebase.google.com'),
style: const TextStyle( style: const TextStyle(

@ -112,12 +112,12 @@
"@footerMadeWithText": { "@footerMadeWithText": {
"description": "Text shown on the footer which mentions technologies used to build the app." "description": "Text shown on the footer which mentions technologies used to build the app."
}, },
"footerMadeWithFlutterLinkText": "Flutter", "footerFlutterLinkText": "Flutter",
"@footerMadeWithFlutterLinkText": { "@footerFlutterLinkText": {
"description": "Text on the link shown on the footer which navigates to the Flutter page" "description": "Text on the link shown on the footer which navigates to the Flutter page"
}, },
"footerMadeWithFirebaseLinkText": "Firebase", "footerFirebaseLinkText": "Firebase",
"@footerMadeWithFirebaseLinkText": { "@footerFirebaseLinkText": {
"description": "Text on the link shown on the footer which navigates to the Firebase page" "description": "Text on the link shown on the footer which navigates to the Firebase page"
}, },
"footerGoogleIOText": "Google I/O", "footerGoogleIOText": "Google I/O",

Loading…
Cancel
Save