Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 15, 2022 09:11 am GMT

How to use the ElevatedButton widget in Flutter?

This article will give examples of using the ElevatedButton widget in Flutter, starting with the most fundamental usage. It is the perfect example written by our Flutter experts, who have vast experience developing Flutter apps.

One of the buttons in Material Design in Flutter web is called Elevated Button has the feature of rising in elevation as the user presses it. Use the ElevatedButton widget in Flutter if you need to construct a Material Design elevated button.

When tapped by the user, these buttons primary feature is a small elevation of their surface toward the screen. Simply put, elevated buttons are raised, non-deprecated buttons without a clearly defined button style.

There are two parameters. It goes without saying that you must transmit a Widget as a child, usually a Text or an Icon widget. Additionally, you must pass the onPressed callback, which is triggered when a button is pressed by the user.

A static factory function ElevatedButton.icon makes it simpler for you to create an elevated button that has both Icon and Text widgets. For each icon and label, you must pass a Widget rather than a child.

This constructor can be used to create an ElevatedButton.

ElevatedButton({Key? key,required VoidCallback? onPressed,VoidCallback? onLongPress,ValueChanged? onHover,ValueChanged? onFocusChange,ButtonStyle? style,FocusNode? focusNode,bool autofocus = false,Clip clipBehavior = Clip.none,MaterialStatesController? statesController,required Widget? child})What are the properties of an ElevatedButton?

1. autofocus:

It delivers a boolean value which corresponds to the buttons initial focus of Flutter.

2. clipBehaviour :

Whether or not the content is clipped is determined by clipBehavior.

3. focusNode:

Depicts the widgets focus node.

4. ButtonStyle style:

Determines how the button will be styled

5. onLongPress :

When the button is long-pressed by the user, an action is to be taken called onLongPress.

6. enabled :

Gives a boolean value for the buttons activity called enabled

7. hashcode :

The buttons hashcode is determined by the hashcode.

8. onFocusChanged :

When a buttons focus changes, a method called onFocusChanged is called.

9. onHover :

The action that will be carried out when the user hovers over the button.

Example:

import 'package:flutter/material.dart';void main() {  runApp(const MyApp());}class MyApp extends StatelessWidget {  const MyApp({super.key});  @override  Widget build(BuildContext context) {    return const MaterialApp(      home: MyHomePage(),    );  }}class MyHomePage extends StatefulWidget {  const MyHomePage({    super.key,  });  @override  State createState() => _MyHomePageState();}class _MyHomePageState extends State {  @override  Widget build(BuildContext context) {    return Scaffold(        body: Column(      mainAxisAlignment: MainAxisAlignment.center,      crossAxisAlignment: CrossAxisAlignment.center,      children: [        ElevatedButton(          style: ElevatedButton.styleFrom(            minimumSize: const Size(88, 36),            padding: const EdgeInsets.symmetric(horizontal: 16),            shape: const RoundedRectangleBorder(             borderRadius: BorderRadius.all(Radius.circular(2)),            ),          ),          onPressed: () {},          child: const Text('Looks like a RaisedButton'),        ),        ElevatedButton(          style: ElevatedButton.styleFrom(),          onPressed: () {},          child: const Text('ElevatedButton with custom foreground/background'),        ),        ElevatedButton(          style: ElevatedButton.styleFrom(backgroundColor: Colors.red),          onPressed: null,          child: const Text('ElevatedButton with custom disabled colors'),        ),        ElevatedButton(          style: ButtonStyle(      backgroundColor: MaterialStateProperty.resolveWith(                (Set states) {          if (states.contains(MaterialState.disabled)) return Colors.red;              return Colors.blue; // Defer to the widget's default.            }),     foregroundColor: MaterialStateProperty.resolveWith(                (Set states) {              if (states.contains(MaterialState.disabled)) return Colors.blue;              return Colors.blue; // Defer to the widget's default.            }),          ),          onPressed: null,          child: const Text('ElevatedButton with custom disabled colors'),        ),        ElevatedButton(          style: ButtonStyle(          elevation: MaterialStateProperty.resolveWith(                (Set states) {              if (states.contains(MaterialState.pressed)) return 16;              return 10;            }),          ),          onPressed: () {},          child: const Text('ElevatedButton with a custom elevation'),        )      ],    ));  }}

Output:

Image description

Conclusion:

So, in this article, we learned how to use the ElevatedButton widget. You can change and update this Flutter code according to your requirement. I hope you liked reading this.

Flutter is the best choice to develop your business apps. Adopt a Flutter app development company to build your dream Flutter mobile application.

Frequently Asked Questions (FAQs)

1. Which is the essential argument for an ElevatedButton in Flutter?

You can make the ElevatedButton in the Flutter by calling the constructor. Usually, there are two kinds of parameters. First, you must pass the widget as a child and the text or icon. You also have to give the onPressed Callback that is called when the user presses the button.

2. How do you increase the size of a widget in Flutter app development?

You can utilize the LayoutBuilder, which will fetch a parent widgets dimension and will adjust the childrens widget dimension according to the parent.

3. How do you give the style to an ElevatedButton in a Flutter project?

You can not provide the style to ElevatedButtons in Flutter. You cannot modify the buttons color, font size, etc. Explicitly like raised buttons. You can pass the text or icons as a child widget to them.


Original Link: https://dev.to/kuldeeptarapara/how-to-use-the-elevatedbutton-widget-in-flutter-1jf7

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To