Unverified Commit 8798bc43 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Updated old button references in dev/integration_tests/android_views (#63214)

* Updated old button references in dev/integration_tests/android_views

* Empty commit to force all tests to rerun
parent 46e1f91c
...@@ -80,13 +80,13 @@ class MotionEventsBodyState extends State<MotionEventsBody> { ...@@ -80,13 +80,13 @@ class MotionEventsBodyState extends State<MotionEventsBody> {
Row( Row(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
child: RaisedButton( child: ElevatedButton(
child: const Text('RECORD'), child: const Text('RECORD'),
onPressed: listenToFlutterViewEvents, onPressed: listenToFlutterViewEvents,
), ),
), ),
Expanded( Expanded(
child: RaisedButton( child: ElevatedButton(
child: const Text('CLEAR'), child: const Text('CLEAR'),
onPressed: () { onPressed: () {
setState(() { setState(() {
...@@ -97,7 +97,7 @@ class MotionEventsBodyState extends State<MotionEventsBody> { ...@@ -97,7 +97,7 @@ class MotionEventsBodyState extends State<MotionEventsBody> {
), ),
), ),
Expanded( Expanded(
child: RaisedButton( child: ElevatedButton(
child: const Text('SAVE'), child: const Text('SAVE'),
onPressed: () { onPressed: () {
const StandardMessageCodec codec = StandardMessageCodec(); const StandardMessageCodec codec = StandardMessageCodec();
...@@ -107,14 +107,14 @@ class MotionEventsBodyState extends State<MotionEventsBody> { ...@@ -107,14 +107,14 @@ class MotionEventsBodyState extends State<MotionEventsBody> {
), ),
), ),
Expanded( Expanded(
child: RaisedButton( child: ElevatedButton(
key: const ValueKey<String>('play'), key: const ValueKey<String>('play'),
child: const Text('PLAY FILE'), child: const Text('PLAY FILE'),
onPressed: () { playEventsFile(); }, onPressed: () { playEventsFile(); },
), ),
), ),
Expanded( Expanded(
child: RaisedButton( child: ElevatedButton(
key: const ValueKey<String>('back'), key: const ValueKey<String>('back'),
child: const Text('BACK'), child: const Text('BACK'),
onPressed: () { Navigator.pop(context); }, onPressed: () { Navigator.pop(context); },
......
...@@ -55,19 +55,19 @@ class WindowManagerBodyState extends State<WindowManagerBody> { ...@@ -55,19 +55,19 @@ class WindowManagerBodyState extends State<WindowManagerBody> {
), ),
if (lastTestStatus != _LastTestStatus.pending) _statusWidget(), if (lastTestStatus != _LastTestStatus.pending) _statusWidget(),
if (viewChannel != null) ... <Widget>[ if (viewChannel != null) ... <Widget>[
RaisedButton( ElevatedButton(
key: const ValueKey<String>('ShowAlertDialog'), key: const ValueKey<String>('ShowAlertDialog'),
child: const Text('SHOW ALERT DIALOG'), child: const Text('SHOW ALERT DIALOG'),
onPressed: onShowAlertDialogPressed, onPressed: onShowAlertDialogPressed,
), ),
Row( Row(
children: <Widget>[ children: <Widget>[
RaisedButton( ElevatedButton(
key: const ValueKey<String>('AddWindow'), key: const ValueKey<String>('AddWindow'),
child: const Text('ADD WINDOW'), child: const Text('ADD WINDOW'),
onPressed: onAddWindowPressed, onPressed: onAddWindowPressed,
), ),
RaisedButton( ElevatedButton(
key: const ValueKey<String>('TapWindow'), key: const ValueKey<String>('TapWindow'),
child: const Text('TAP WINDOW'), child: const Text('TAP WINDOW'),
onPressed: onTapWindowPressed, onPressed: onTapWindowPressed,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment