Flutter has released new button widgets for mobile app developers. Who wants to forget about RaisedButton, FlatButton, OutlineButton which provides a simple way to add buttons with or without icon on a screen for our mobile applications? To simplify it, Flutter has updated these all these to ElevatedButton, TextButton, OutlinedButton respectively with parameter as well as styling option updates. Let’s see them one by one.
Same as RaisedButton, this widget puts button with elevation on the screen. Required parameters are same, child, onPressed. Child will accept widget to be displayed on button, onPressed will accept a VoidCallBack to be called when a button been pressed/touched.
ElevatedButton( child: Text('Elevated Button'), onPressed: () { log('Elevated button clicked'); }, )
Having same code which we used for RaisedButton we can have same representation with ElevatedButton.
Now let’s talk about another replacement, TextButton.
This one is an alternative of FlatButton, which we’re be using where a tapped action needs to be provided for Text being displayed on screen without any border, elevation or fancy decoration. Required parameters are same child and onPresseed.
TextButton( child: Text('Text Button'), onPressed: () { log('Text button clicked'); }, ),
Button will be displayed as shown below.
Let’s talk about last, replacement if OutlineButton.
We were using OutlineButton to display a tap action on screen with outline border, without filling area occupied inside this outline border. Required parameters are same, child and onPressed.
OutlinedButton( child: Text('OutlinedButton Button'), onPressed: () { log('OutlinedButton button clicked'); }, ),
Button will be displayed as shown below.
So, these was the basic details of replacement of button widgets available in Flutter to display different type of buttons for out mobile applications.
Button with icon which we’re using earlier are same with these updated widgets as well. To have an elevated button with icon use ElevatedButton.icon widget and pass required parameters. Same for outlined button and text button, use OutlinedButton.icon, TextButton.icon respectively. Below are the representations how they will look.
Next, now let’s talk about styling.
Styling can be provided to content being displayed on button and as well as to button itself. Previously, we were having different parameters at individual button level to decide different styling properties, but now this can be done by giving a value of ButtonStyle class to style parameter of these updated material buttons. Let’s check them out one by one.
Note: This all property works same for TextButton and OutlinedButton as well. For simplicity, only ElevatedButton is represented in further article.
This will define styling of text being displayed on button. It accepts a value of TextStyle class to provide text styling options via MaterialStateProperty. See below.
textStyle: MaterialStateProperty.all<TextStyle>( TextStyle( fontSize: 24.0, fontWeight: FontWeight.w500, ), ),
These options are available to have required color for specific place.
All of these options, accepts value of Color class via MaterialStateProperty. See below code.
backgroundColor: MaterialStateProperty.all<Color>( Colors.blueAccent, ), foregroundColor: MaterialStateProperty.all<Color>( Colors.yellow, ), overlayColor: MaterialStateProperty.all<Color>( Colors.red, ), shadowColor: MaterialStateProperty.all<Color>( Colors.green, ),
To provide z index height (elevation) to button we can assign any positive value to it.
elevation: MaterialStateProperty.all<double>(5.0),
To give spacing between button border and content being displayed above it this property can be used. It accepts value of EdgeInsets via MaterialStateProperty.
padding: MaterialStateProperty.all<EdgeInsets>( EdgeInsets.symmetric( horizontal: 20.0, vertical: 15.0, ), ),
Using this parameter we can even customize border of a button being displayed on the mobile screen. Pass value of BorderSide class via MaterailStateProperty as below and see changes.
side: MaterialStateProperty.all<BorderSide>( BorderSide( color: Colors.yellow, width: 3.0, ), ),
This parameter is an interesting one as it gives us so many options to be used to have different shapes for a button. See options below,
BeveledRectangleBorder
shape: MaterialStateProperty.all<OutlinedBorder>( BeveledRectangleBorder( borderRadius: BorderRadius.circular(20.0), ), ),
ContinuousRectangleBorder
shape: MaterialStateProperty.all<OutlinedBorder>( ContinuousRectangleBorder( borderRadius: BorderRadius.circular(20.0), ), ),
RoundedRectangleBorder
shape: MaterialStateProperty.all<OutlinedBorder>( RoundedRectangleBorder( borderRadius: BorderRadius.circular(20.0), ), ),
Circle Border
shape: MaterialStateProperty.all<OutlinedBorder>( CircleBorder(), ),
See, this is how this shape parameter changes shape of a material button with different representations.
So, these are all what we have for updated Flutter material buttons. We hope you learned something new! Stay tuned for our next how-to article.
Get a FREE quote on your project today!
Your idea is 100% protected by our Non-Disclosure Agreement
In this episode of the The Lazy CEO Podcast,…
Join us for an enlightening episode of The CEO…
Creating multi-agent workflows is the future of AI development,…
How has sunflower lab's focus on integrating ai, data…
Businesses are quickly shifting towards optimized processes. And the…
Developers often make mistakes when using Power Automate, which…