Unverified Commit 192b0640 authored by Taha Tesser's avatar Taha Tesser Committed by GitHub

Replace `MaterialButton` from test classes (#128466)

fixes https://github.com/flutter/flutter/issues/128465
parent 8600eb12
...@@ -1402,9 +1402,9 @@ void main() { ...@@ -1402,9 +1402,9 @@ void main() {
reverseDuration: const Duration(seconds: 2), reverseDuration: const Duration(seconds: 2),
), ),
builder: (BuildContext context) { builder: (BuildContext context) {
return MaterialButton( return ElevatedButton(
onPressed: () => Navigator.pop(context),
key: tapTargetToClose, key: tapTargetToClose,
onPressed: () => Navigator.pop(context),
child: const Text('BottomSheet'), child: const Text('BottomSheet'),
); );
}, },
...@@ -1551,9 +1551,9 @@ void main() { ...@@ -1551,9 +1551,9 @@ void main() {
context: context, context: context,
transitionAnimationController: controller, transitionAnimationController: controller,
builder: (BuildContext context) { builder: (BuildContext context) {
return MaterialButton( return ElevatedButton(
onPressed: () => Navigator.pop(context),
key: tapTargetToClose, key: tapTargetToClose,
onPressed: () => Navigator.pop(context),
child: const Text('BottomSheet'), child: const Text('BottomSheet'),
); );
}, },
......
...@@ -22,9 +22,9 @@ void main() { ...@@ -22,9 +22,9 @@ void main() {
children: <Widget>[ children: <Widget>[
const Text('I am text!'), const Text('I am text!'),
const Text('Moar text!!1'), const Text('Moar text!!1'),
MaterialButton( ElevatedButton(
child: const Text('Button'),
onPressed: () { }, onPressed: () { },
child: const Text('Button'),
), ),
], ],
), ),
......
...@@ -1029,7 +1029,7 @@ class _TestSearchDelegate extends SearchDelegate<String> { ...@@ -1029,7 +1029,7 @@ class _TestSearchDelegate extends SearchDelegate<String> {
@override @override
Widget buildSuggestions(BuildContext context) { Widget buildSuggestions(BuildContext context) {
queriesForSuggestions.add(query); queriesForSuggestions.add(query);
return MaterialButton( return ElevatedButton(
onPressed: () { onPressed: () {
showResults(context); showResults(context);
}, },
...@@ -1066,7 +1066,7 @@ class _TestEmptySearchDelegate extends SearchDelegate<String> { ...@@ -1066,7 +1066,7 @@ class _TestEmptySearchDelegate extends SearchDelegate<String> {
@override @override
Widget buildSuggestions(BuildContext context) { Widget buildSuggestions(BuildContext context) {
return MaterialButton( return ElevatedButton(
onPressed: () { onPressed: () {
showResults(context); showResults(context);
}, },
......
...@@ -1345,9 +1345,13 @@ void main() { ...@@ -1345,9 +1345,13 @@ void main() {
Text('Second child', style: TextStyle(fontFamily: 'FlutterTest', fontSize: 8.0)), Text('Second child', style: TextStyle(fontFamily: 'FlutterTest', fontSize: 8.0)),
], ],
), ),
const MaterialButton( ElevatedButton(
onPressed: null, onPressed: null,
child: Text('Material Button', style: TextStyle(fontFamily: 'FlutterTest', fontSize: 20.0)), style: ElevatedButton.styleFrom(textStyle: const TextStyle(
fontFamily: 'FlutterTest',
fontSize: 20.0,
)),
child: const Text('Elevated Button'),
), ),
const Text('Text', style: TextStyle(fontFamily: 'FlutterTest', fontSize: 28.0)), const Text('Text', style: TextStyle(fontFamily: 'FlutterTest', fontSize: 28.0)),
], ],
...@@ -1366,11 +1370,11 @@ void main() { ...@@ -1366,11 +1370,11 @@ void main() {
final double firstToggleButtonDy = tester.getBottomLeft(find.text('First child')).dy; final double firstToggleButtonDy = tester.getBottomLeft(find.text('First child')).dy;
final double secondToggleButtonDy = tester.getBottomLeft(find.text('Second child')).dy; final double secondToggleButtonDy = tester.getBottomLeft(find.text('Second child')).dy;
final double materialButtonDy = tester.getBottomLeft(find.text('Material Button')).dy; final double elevatedButtonDy = tester.getBottomLeft(find.text('Elevated Button')).dy;
final double textDy = tester.getBottomLeft(find.text('Text')).dy; final double textDy = tester.getBottomLeft(find.text('Text')).dy;
expect(firstToggleButtonDy, secondToggleButtonDy); expect(firstToggleButtonDy, secondToggleButtonDy);
expect(firstToggleButtonDy, materialButtonDy - 3.0); expect(firstToggleButtonDy, elevatedButtonDy - 3.0);
expect(firstToggleButtonDy, textDy - 5.0); expect(firstToggleButtonDy, textDy - 5.0);
}); });
......
...@@ -863,10 +863,10 @@ void main() { ...@@ -863,10 +863,10 @@ void main() {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( MaterialApp(
home: FocusableActionDetector( home: FocusableActionDetector(
child: MaterialButton( child: ElevatedButton(
onPressed: () {},
focusNode: buttonNode, focusNode: buttonNode,
child: const Text('Test'), child: const Text('Test'),
onPressed: () {},
), ),
), ),
), ),
...@@ -882,10 +882,10 @@ void main() { ...@@ -882,10 +882,10 @@ void main() {
MaterialApp( MaterialApp(
home: FocusableActionDetector( home: FocusableActionDetector(
descendantsAreFocusable: false, descendantsAreFocusable: false,
child: MaterialButton( child: ElevatedButton(
onPressed: () {},
focusNode: buttonNode, focusNode: buttonNode,
child: const Text('Test'), child: const Text('Test'),
onPressed: () {},
), ),
), ),
), ),
...@@ -910,15 +910,15 @@ void main() { ...@@ -910,15 +910,15 @@ void main() {
home: FocusableActionDetector( home: FocusableActionDetector(
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
MaterialButton( ElevatedButton(
onPressed: () {},
focusNode: buttonNode1, focusNode: buttonNode1,
child: const Text('Node 1'), child: const Text('Node 1'),
onPressed: () {},
), ),
MaterialButton( ElevatedButton(
onPressed: () {},
focusNode: buttonNode2, focusNode: buttonNode2,
child: const Text('Node 2'), child: const Text('Node 2'),
onPressed: () {},
), ),
], ],
), ),
...@@ -941,15 +941,15 @@ void main() { ...@@ -941,15 +941,15 @@ void main() {
descendantsAreTraversable: false, descendantsAreTraversable: false,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
MaterialButton( ElevatedButton(
onPressed: () {},
focusNode: buttonNode1, focusNode: buttonNode1,
child: const Text('Node 1'), child: const Text('Node 1'),
onPressed: () {},
), ),
MaterialButton( ElevatedButton(
onPressed: () {},
focusNode: buttonNode2, focusNode: buttonNode2,
child: const Text('Node 2'), child: const Text('Node 2'),
onPressed: () {},
), ),
], ],
), ),
......
...@@ -331,7 +331,7 @@ void main() { ...@@ -331,7 +331,7 @@ void main() {
policy: WidgetOrderTraversalPolicy(), policy: WidgetOrderTraversalPolicy(),
child: Center( child: Center(
child: Builder(builder: (BuildContext context) { child: Builder(builder: (BuildContext context) {
return MaterialButton( return ElevatedButton(
key: key1, key: key1,
focusNode: testNode1, focusNode: testNode1,
autofocus: true, autofocus: true,
...@@ -340,7 +340,7 @@ void main() { ...@@ -340,7 +340,7 @@ void main() {
MaterialPageRoute<void>( MaterialPageRoute<void>(
builder: (BuildContext context) { builder: (BuildContext context) {
return Center( return Center(
child: MaterialButton( child: ElevatedButton(
key: key2, key: key2,
focusNode: testNode2, focusNode: testNode2,
autofocus: true, autofocus: true,
...@@ -1218,7 +1218,7 @@ void main() { ...@@ -1218,7 +1218,7 @@ void main() {
child: Builder(builder: (BuildContext context) { child: Builder(builder: (BuildContext context) {
return FocusTraversalOrder( return FocusTraversalOrder(
order: const NumericFocusOrder(0), order: const NumericFocusOrder(0),
child: MaterialButton( child: ElevatedButton(
key: key1, key: key1,
focusNode: testNode1, focusNode: testNode1,
autofocus: true, autofocus: true,
...@@ -1229,7 +1229,7 @@ void main() { ...@@ -1229,7 +1229,7 @@ void main() {
return Center( return Center(
child: FocusTraversalOrder( child: FocusTraversalOrder(
order: const NumericFocusOrder(0), order: const NumericFocusOrder(0),
child: MaterialButton( child: ElevatedButton(
key: key2, key: key2,
focusNode: testNode2, focusNode: testNode2,
autofocus: true, autofocus: true,
......
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