Merge branch 'main' into feat/replay-functionality

pull/441/head
Alejandro Santiago 3 years ago committed by GitHub
commit 366b48e5ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -290,7 +290,7 @@ class OpenSourceTextComponent extends TextComponent with HasGameRef, Tappable {
); );
@override @override
bool onTapDown(TapDownInfo info) { bool onTapUp(TapUpInfo info) {
openLink(ShareRepository.openSourceCode); openLink(ShareRepository.openSourceCode);
return true; return true;
} }

@ -213,7 +213,7 @@
"@socialMediaAccount": { "@socialMediaAccount": {
"description": "Text displayed on share screen for description" "description": "Text displayed on share screen for description"
}, },
"iGotScoreAtPinball": "I got {score} at the #IOPinball machine, can you beat my score? See you at #GoogleIO!", "iGotScoreAtPinball": "I got {score} points in #IOPinball, can you beat my score? \nSee you at #GoogleIO!",
"@iGotScoreAtPinball": { "@iGotScoreAtPinball": {
"description": "Text to share score on Social Network", "description": "Text to share score on Social Network",
"placeholders": { "placeholders": {

@ -176,7 +176,7 @@ void main() {
final openSourceLink = final openSourceLink =
component.descendants().whereType<OpenSourceTextComponent>().first; component.descendants().whereType<OpenSourceTextComponent>().first;
openSourceLink.onTapDown(_MockTapDownInfo()); openSourceLink.onTapUp(_MockTapUpInfo());
await game.ready(); await game.ready();

Loading…
Cancel
Save