-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b168986
commit 8ee8d61
Showing
7 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class Issue1619Repro extends StatefulWidget { | ||
const Issue1619Repro({super.key}); | ||
|
||
@override | ||
State<Issue1619Repro> createState() => _Issue1619ReproState(); | ||
} | ||
|
||
class _Issue1619ReproState extends State<Issue1619Repro> { | ||
int count = 0; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
title: const Text('issue 1619 repro'), | ||
), | ||
body: Center( | ||
child: Column( | ||
children: [ | ||
Semantics( | ||
identifier: 'first', | ||
child: const Text("First"), | ||
), | ||
Semantics( | ||
identifier: 'second', | ||
child: const Text("Second"), | ||
), | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
appId: com.example.example | ||
--- | ||
- launchApp | ||
- tapOn: issue 1619 repro | ||
- runScript: | ||
when: | ||
visible: | ||
text: First|Second | ||
file: script.js | ||
- runScript: | ||
when: | ||
visible: | ||
id: first|second | ||
file: script.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("Script executed") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
appId: com.example.example | ||
--- | ||
- launchApp | ||
- evalScript: ${console.log('Hello!')} | ||
- evalScript: ${console.log('Hello money! $')} | ||
- evalScript: ${console.log('$')} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
appId: com.example.example | ||
--- | ||
- launchApp | ||
- runScript: script.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
console.log('Hello!') | ||
console.log('Hello money! $') | ||
console.log('$') |