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:
@@ -69,7 +69,7 @@ class _AnimatedContainerDemoState extends State<AnimatedContainerDemo> {
|
||||
),
|
||||
),
|
||||
),
|
||||
RaisedButton(
|
||||
ElevatedButton(
|
||||
child: Text(
|
||||
'change',
|
||||
),
|
||||
|
||||
@@ -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());
|
||||
|
||||
@@ -68,7 +68,7 @@ class _AnimationControllerDemoState extends State<AnimationControllerDemo>
|
||||
textScaleFactor: 1 + controller.value,
|
||||
),
|
||||
),
|
||||
RaisedButton(
|
||||
ElevatedButton(
|
||||
child: Text('animate'),
|
||||
onPressed: () {
|
||||
if (controller.status == AnimationStatus.completed) {
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -61,7 +61,7 @@ class _FadeTransitionDemoState extends State<FadeTransitionDemo>
|
||||
size: 300,
|
||||
),
|
||||
),
|
||||
RaisedButton(
|
||||
ElevatedButton(
|
||||
child: Text('animate'),
|
||||
onPressed: () => setState(() {
|
||||
_controller.animateTo(1.0).then<TickerFuture>(
|
||||
|
||||
@@ -59,7 +59,7 @@ class _CardSwipeDemoState extends State<CardSwipeDemo> {
|
||||
),
|
||||
),
|
||||
),
|
||||
RaisedButton(
|
||||
ElevatedButton(
|
||||
child: const Text('Refill'),
|
||||
onPressed: () {
|
||||
setState(() {
|
||||
|
||||
@@ -146,7 +146,7 @@ class _CurvedAnimationDemoState extends State<CurvedAnimationDemo>
|
||||
),
|
||||
),
|
||||
SizedBox(height: 25.0),
|
||||
RaisedButton(
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
controller.forward();
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user