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),
children: <TextSpan>[
TextSpan(
text: l10n.footerMadeWithFlutterLinkText,
text: l10n.footerFlutterLinkText,
recognizer: TapGestureRecognizer()
..onTap = () => openLink('https://flutter.dev'),
style: const TextStyle(
@ -63,7 +63,7 @@ class _MadeWithFlutterAndFirebase extends StatelessWidget {
),
const TextSpan(text: ' & '),
TextSpan(
text: l10n.footerMadeWithFirebaseLinkText,
text: l10n.footerFirebaseLinkText,
recognizer: TapGestureRecognizer()
..onTap = () => openLink('https://firebase.google.com'),
style: const TextStyle(

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

Loading…
Cancel
Save