Unverified Commit add5f2ea authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Updating sample code for raised button to match forthcoming diagram. (#30348)

parent 9d2fa953
...@@ -38,35 +38,48 @@ import 'theme_data.dart'; ...@@ -38,35 +38,48 @@ import 'theme_data.dart';
/// ///
/// ```dart /// ```dart
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return Center(
/// body: Center( /// child: Column(
/// child: Column( /// mainAxisSize: MainAxisSize.min,
/// mainAxisSize: MainAxisSize.min, /// children: <Widget>[
/// children: <Widget>[ /// const RaisedButton(
/// RaisedButton( /// onPressed: null,
/// onPressed: null, /// child: Text(
/// child: const Text('Disabled Button'), /// 'Disabled Button',
/// style: TextStyle(fontSize: 20)
/// ), /// ),
/// RaisedButton( /// ),
/// onPressed: () {}, /// const SizedBox(height: 30),
/// child: const Text('Enabled Button'), /// RaisedButton(
/// onPressed: () {},
/// child: const Text(
/// 'Enabled Button',
/// style: TextStyle(fontSize: 20)
/// ), /// ),
/// RaisedButton( /// ),
/// onPressed: () {}, /// const SizedBox(height: 30),
/// textColor: Colors.white, /// RaisedButton(
/// padding: const EdgeInsets.all(0.0), /// onPressed: () {},
/// child: Container( /// textColor: Colors.white,
/// decoration: const BoxDecoration( /// padding: const EdgeInsets.all(0.0),
/// gradient: LinearGradient( /// child: Container(
/// colors: <Color>[Colors.red, Colors.green, Colors.blue], /// decoration: const BoxDecoration(
/// ), /// gradient: LinearGradient(
/// colors: <Color>[
/// Color(0xFF0D47A1),
/// Color(0xFF1976D2),
/// Color(0xFF42A5F5),
/// ],
/// ), /// ),
/// padding: const EdgeInsets.all(10.0), /// ),
/// child: Text('Gradient Button'), /// padding: const EdgeInsets.all(10.0),
/// child: const Text(
/// 'Gradient Button',
/// style: TextStyle(fontSize: 20)
/// ), /// ),
/// ), /// ),
/// ], /// ),
/// ), /// ],
/// ), /// ),
/// ); /// );
/// } /// }
......
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