Design Converter
Education
Software Development Executive - II
Last updated on Jun 3, 2024
Last updated on Jun 3, 2024
In today's digital world, user interface design plays a pivotal role in application development. One UI element that has gained popularity due to its sleek design and ease of use is the Flutter circle button. These rounded buttons not only add to the visual appeal of an app but are also synonymous with modern design practices.
In this blog post, we will learn how to create a Flutter circle button and incorporate it into your mobile applications to enhance user experience.
Circle buttons, also known as floating action buttons, have become a staple in material design, widely used in mobile apps for important, promoted actions. Flutter, with its rich widget library, allows developers to implement these circular buttons effortlessly.
The Flutter circle button is more than just a visual element; it offers a convenient way for users to perform actions. This post will guide you through creating attractive circle buttons, adding functionality, and customizing their appearance to fit the style of your app gracefully.
Flutter's widget-centric design approach makes it the perfect framework for crafting bespoke UI components.
The flexibility to customize and animate widgets in Flutter makes the Flutter circular button particularly versatile. You can use it across various sections of your app to perform different functions while maintaining a consistent style and behavior.
Let's start with understanding the essential properties that make up a Flutter round button.
Every circle button in Flutter is defined by its key attributes - shape, color, and behavior. The shape of the button is circular, achieved by adjusting the border radius. Color typically follows the app's theme, and behavior responds to user interactions such as tap or press.
To make a button stand out, you may want to customize its look and feel.
Rounded corners are achieved by specifying the borderRadius property. For example, BorderRadius.circular(30) would give the Flutter button rounded corners that form a perfect circle.
Defining a border radius is crucial in giving your button the desired roundness. Flutter rounded buttons have a more subtle and elegant look as compared to their sharp-edged counterparts.
Before you begin, set up your local project. Make sure you have the Flutter SDK installed and your emulator or device ready to run an Android app or iOS app.
Here's a code sample to create a simple Flutter circle whose appearance displays an icon button with rounded corners:
1ElevatedButton( 2 style: ElevatedButton.styleFrom( 3 shape: CircleBorder(), 4 padding: EdgeInsets.all(24), 5 ), 6 onPressed: () { 7 // Handle button tap 8 }, 9 child: Icon(Icons.add), 10)
To add icons to your button, wrap the Icon widget within the child property. For text, use the Text widget. Customize the text style and icon colors to match your design requirements.
Appearance matters, and styling your button is key to making it both functional and attractive.
A prism of design elements is at your disposal in Flutter. To style a button, you might choose a minimalistic look with a simple color colors.white, or go bold with gradients and shadows for depth perception. Here’s a snippet demonstrating these styling components:
1ElevatedButton( 2 style: ElevatedButton.styleFrom( 3 primary: Colors.blue, // Button color 4 onPrimary: Colors.white, // Text color 5 shadowColor: Colors.grey, // Shadow color 6 elevation: 5, 7 shape: CircleBorder(), 8 padding: EdgeInsets.all(20), 9 ), 10 onPressed: () { 11 // Handle button tap 12 }, 13 child: Icon(Icons.settings), 14)
Understanding user actions is essential, and providing feedback through animations can uplift the user experience. Flutter's InkWell widget is great for adding a splash color and ripple effect on press:
1InkWell( 2 onTap: () { 3 // Handle button tap 4 }, 5 borderRadius: BorderRadius.circular(50), // Matching the button's border-radius 6 child: Container( 7 width: 100, 8 height: 100, 9 decoration: BoxDecoration( 10 shape: BoxShape.circle, 11 color: Colors.green, 12 ), 13 child: Icon(Icons.done, size: 50, color: Colors.white), 14 ), 15)
Your Flutter circle button can be more than just a tap target; let's add some advanced functionality.
You can create a toggle feature by changing the button's appearance when it is pressed. This gives users a clear indication that the button has been activated. Here's how to implement a toggling action with state management:
1class ToggleButton extends StatefulWidget { 2 3 _ToggleButtonState createState() => _ToggleButtonState(); 4} 5 6class _ToggleButtonState extends State<ToggleButton> { 7 bool isToggled = false; 8 9 10 Widget build(BuildContext context) { 11 return ElevatedButton( 12 style: ElevatedButton.styleFrom( 13 shape: CircleBorder(), 14 primary: isToggled ? Colors.red : Colors.blue, 15 padding: EdgeInsets.all(24), 16 ), 17 onPressed: () { 18 setState(() { 19 isToggled = !isToggled; 20 }); 21 }, 22 child: Icon( 23 isToggled ? Icons.close : Icons.check, 24 size: 28, 25 color: Colors.white, 26 ), 27 ); 28 } 29}
By toggling the isToggled boolean value, we switch between icons and colors to indicate the button’s state.
When the standard shapes aren’t enough, CustomPainter allows you to draw any design on your button. While this is an advanced technique best covered in a dedicated post, here is an example to get you started:
1class CustomDrawnButton extends StatelessWidget { 2 3 Widget build(BuildContext context) { 4 return GestureDetector( 5 onTap: () { 6 // Your custom button tap 7 }, 8 child: CustomPaint( 9 painter: MyCustomButtonPainter(), 10 child: SizedBox(width: 100, height: 100), 11 ), 12 ); 13 } 14} 15 16class MyCustomButtonPainter extends CustomPainter { 17 18 void paint(Canvas canvas, Size size) { 19 final paint = Paint() 20 ..color = Colors.blue 21 ..style = PaintingStyle.fill; 22 23 // Draw your custom shape 24 canvas.drawCircle(Offset(size.width / 2, size.height / 2), 50, paint); 25 } 26 27 28 bool shouldRepaint(CustomPainter oldDelegate) => false; 29}
This code represents a button with a custom-painted circle. You can expand on this to create more complex shapes and visual elements.
Clean and maintainable code is just as important as the button's appearance. Here’s how to ensure your code is up to standard.
Always comment your code to explain why a certain piece of logic exists. Structuring your code properly, using functions and classes, enhances readability. Here is a way to structure your button code using comments and clear structure:
1// A reusable rounded button widget 2class CustomIconButton extends StatelessWidget { 3 final IconData icon; 4 final VoidCallback onTap; 5 final Color color; 6 final Color iconColor; 7 8 const CustomIconButton({ 9 Key key, 10 this.icon, 11 this.onTap, 12 this.color = Colors.blue, 13 this.iconColor = Colors.white, 14 }) : super(key: key); 15 16 17 Widget build(BuildContext context) { 18 return ElevatedButton( 19 style: ElevatedButton.styleFrom( 20 primary: color, // Button's background color 21 shape: CircleBorder(), // Rounded shape 22 padding: EdgeInsets.all(24), // Padding inside the button 23 ), 24 onPressed: onTap, 25 child: Icon( 26 icon, 27 color: iconColor, // Icon color 28 ), 29 ); 30 } 31}
Avoid unnecessary rebuilds by using const constructors wherever possible. This enhances performance, as Flutter knows it doesn't need to rebuild that widget if it hasn't changed.
1const CustomIconButton( 2 icon: Icons.star, 3 onTap: _handleButtonTap, 4)
Remember to profile your app to identify any performance bottlenecks that might relate to the buttons or any other UI elements.
Let's put our button into the context of a real app.
Imagine you're creating a music app, and you need a play button. Here’s how the Flutter circle button can be integrated:
1class MusicPlayerControls extends StatelessWidget { 2 3 Widget build(BuildContext context) { 4 return Column( 5 mainAxisAlignment: MainAxisAlignment.center, 6 children: <Widget>[ 7 Text( 8 'Now Playing', 9 style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold), 10 ), 11 SizedBox(height: 20), // Provides space between the text and the button 12 CustomIconButton( 13 icon: Icons.play_arrow, 14 onTap: () { 15 // Code to play music 16 }, 17 color: Colors.green, // Play button color 18 iconColor: Colors.white, // Icon color 19 ), 20 ], 21 ); 22 } 23}
This example shows how to integrate the custom button into a real Flutter round button within an app's UI.
Test your buttons on different screen sizes and devices to ensure compatibility. Use Flutter's hot reload feature to quickly iterate on changes and find the perfect design.
Throughout this post, we've learned how to create, style, and integrate a Flutter circle button into an app. Always aim for a balance between aesthetics and functionality to ensure a positive user experience.
We've covered the basics of creating a rounded button, the importance of style, animations, and advanced features like toggle and custom painting. With these tools, you're now ready to enhance your apps with beautiful, functional circle buttons.
Flutter's flexible widget system opens a world of possibilities for custom UI components. Remember, the key to a great button is not just how it looks but how it interacts with the user.
Explore, learn, and create unique UI components in Flutter to make your apps stand out. Happy coding!
Tired of manually designing screens, coding on weekends, and technical debt? Let DhiWise handle it for you!
You can build an e-commerce store, healthcare app, portfolio, blogging website, social media or admin panel right away. Use our library of 40+ pre-built free templates to create your first application using DhiWise.