fix: update how it's made link (#618)

This commit is contained in:
Felix Angelov
2021-05-14 14:51:48 -05:00
committed by GitHub
parent ec0649343f
commit a6dccfecf7
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ export default `
<ul>
<li><a href="https://events.google.com/io/">Google I/O</a></li>
<li><a href="https://flutter.dev/docs/codelabs">Codelab</a></li>
<li><a href="https://medium.com/flutter/i-o-photo-booth-powered-by-flutter-firebase-fc1381264e08">How It's Made</a></li>
<li><a href="https://medium.com/flutter/how-its-made-i-o-photo-booth-3b8355d35883">How It's Made</a></li>
<li><a href="https://policies.google.com/terms">Terms of Service</a></li>
<li><a href="https://policies.google.com/privacy">Privacy Policy</a></li>
</ul>

View File

@ -110,7 +110,7 @@ class FooterHowItsMadeLink extends StatelessWidget {
return FooterLink(
link:
'https://medium.com/flutter/i-o-photo-booth-powered-by-flutter-firebase-fc1381264e08',
'https://medium.com/flutter/how-its-made-i-o-photo-booth-3b8355d35883',
text: l10n.footerHowItsMadeLinkText,
);
}

View File

@ -175,7 +175,7 @@ void main() {
expect(
widget.link,
equals(
'https://medium.com/flutter/i-o-photo-booth-powered-by-flutter-firebase-fc1381264e08',
'https://medium.com/flutter/how-its-made-i-o-photo-booth-3b8355d35883',
),
);
});