1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Migrate to the New Material Buttons (#668)

This commit is contained in:
Brett Morgan
2021-01-27 13:20:50 +11:00
committed by GitHub
parent 6502209a78
commit 622e8d55d3
44 changed files with 122 additions and 107 deletions

View File

@@ -69,7 +69,7 @@ class _AnimatedContainerDemoState extends State<AnimatedContainerDemo> {
),
),
),
RaisedButton(
ElevatedButton(
child: Text(
'change',
),

View File

@@ -14,7 +14,7 @@ class PageRouteBuilderDemo extends StatelessWidget {
title: Text('Page 1'),
),
body: Center(
child: RaisedButton(
child: ElevatedButton(
child: Text('Go!'),
onPressed: () {
Navigator.of(context).push<void>(_createRoute());

View File

@@ -68,7 +68,7 @@ class _AnimationControllerDemoState extends State<AnimationControllerDemo>
textScaleFactor: 1 + controller.value,
),
),
RaisedButton(
ElevatedButton(
child: Text('animate'),
onPressed: () {
if (controller.status == AnimationStatus.completed) {

View File

@@ -51,7 +51,7 @@ class _TweenDemoState extends State<TweenDemo>
child: Text('\$${animation.value.toStringAsFixed(2)}',
style: TextStyle(fontSize: 24)),
),
RaisedButton(
ElevatedButton(
child: Text(
controller.status == AnimationStatus.completed
? 'Buy a Mansion'

View File

@@ -61,7 +61,7 @@ class _FadeTransitionDemoState extends State<FadeTransitionDemo>
size: 300,
),
),
RaisedButton(
ElevatedButton(
child: Text('animate'),
onPressed: () => setState(() {
_controller.animateTo(1.0).then<TickerFuture>(

View File

@@ -59,7 +59,7 @@ class _CardSwipeDemoState extends State<CardSwipeDemo> {
),
),
),
RaisedButton(
ElevatedButton(
child: const Text('Refill'),
onPressed: () {
setState(() {

View File

@@ -146,7 +146,7 @@ class _CurvedAnimationDemoState extends State<CurvedAnimationDemo>
),
),
SizedBox(height: 25.0),
RaisedButton(
ElevatedButton(
onPressed: () {
controller.forward();
},