Unverified Commit e82b9f99 authored by Darren Austin's avatar Darren Austin Committed by GitHub

Updated examples/layers to use the new button API. (#62932)

Updated examples/layers to use the new button API.
parent 504963b4
......@@ -253,7 +253,7 @@ class IsolateExampleState extends State<StatefulWidget> with SingleTickerProvide
),
Text(_status),
Center(
child: RaisedButton(
child: ElevatedButton(
child: Text(_label),
onPressed: _handleButtonPressed,
),
......
......@@ -96,7 +96,7 @@ class SectorAppState extends State<SectorApp> {
padding: const EdgeInsets.symmetric(horizontal: 8.0, vertical: 25.0),
child: Row(
children: <Widget>[
RaisedButton(
ElevatedButton(
onPressed: _enabledAdd ? addSector : null,
child: IntrinsicWidth(
child: Row(
......@@ -111,7 +111,7 @@ class SectorAppState extends State<SectorApp> {
),
),
),
RaisedButton(
ElevatedButton(
onPressed: _enabledRemove ? removeSector : null,
child: IntrinsicWidth(
child: Row(
......
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