Correct RaisedButton to OutlineButton for disabled outline example in buttons demo (#18243)

This commit is contained in:
Anthony 2018-06-06 17:44:07 -04:00 committed by GitHub
parent 4a2ed22b0e
commit fc5d44d7ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -226,7 +226,7 @@ class _ButtonsDemoState extends State<ButtonsDemo> {
// Perform some action // Perform some action
}, },
), ),
const RaisedButton( const OutlineButton(
child: const Text('DISABLED'), child: const Text('DISABLED'),
onPressed: null, onPressed: null,
), ),