Wednesday, August 12Digital Marketing Journals

RaisedButton Deprecation and Migration Guide With An Example


import 'package:flutter/material.dart';
RaisedButton(
onPressed: () {
// Do something when the button is pressed
},
child: Text('Click me'),
)
ElevatedButton(
onPressed: () {
// Do something when the button is pressed
},
child: Text('Click me'),
)
ElevatedButton(
onPressed: () {
// Do something when the button is pressed
},
aElevatedButton(
onPressed: () {
// Do something when the button is pressed
},
style: ElevatedButton.styleFrom(
primary: Colors.red, // Set the button's background color
),
child: Text('Click me'),
)
)

Leave a Reply