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