<p>Footer Buttons in flutter can be achieved by adding persistenFooderButtons properties to the Scaffold. In this post, I'm going to share the code to achieve the same. Here is how the final output is going to look. ; background-color: rgb(30, 30, 30); font-family: Consolas, "Courier New", monospace; font-size: 14px; line-height: 19px; white-space: pre;](color: #569cd6;](import color: #ce9178;]('package:flutter/material.dart'; color: #569cd6;](void main() => runApp(MyApp()); color: #569cd6;](class MyApp color: #569cd6;](extends StatelessWidget { color: #569cd6;](@override Widget build(BuildContext context) { color: #569cd6;](return MaterialApp( home: Scaffold( appBar: AppBar( title: Text(color: #ce9178;]('Building Layouts with FLutter'), ), body: Center( child: Text( color: #ce9178;]('Hello Flutter Layouts', style: TextStyle(fontSize: color: #b5cea8;](24), ), ), floatingActionButton: FloatingActionButton( onPressed: () { print(color: #ce9178;]('You clicked'); }, child: Icon(Icons.lightbulb_outline), ), persistentFooterButtons: [ IconButton( icon: Icon(Icons.add), onPressed: () , ), IconButton( icon: Icon(Icons.alarm), onPressed: () , ), IconButton( icon: Icon(Icons.add_location), onPressed: () , ), ], ), ); }}</p> <p>Hope this example will be useful to you. If you are interest in an alternate way of achiving the same, here is another example <a href="https://fluttercentral.com/Articles/Post/1140">https://fluttercentral.com/Articles/Post/1140font-size: 1rem;</a> Thanks,Srikanth</p>
How to add a Footer Buttons in Flutter?
This Article is posted by seven.srikanth at 8/15/2019 2:02:41 PM
Check out our other latest articles
Safearea widget - How to avoid visual overlap with Notch on flutter mobile app?How to convert row of widgets into column of widgets in flutter based on screen size?
How to run Flutter programs from GitHub?
How to get screen orientation in flutter?
NavigationRail example in flutter
Tags: Scaffold; persistentFooterButtons;
Check out our other latest articles
Safearea widget - How to avoid visual overlap with Notch on flutter mobile app?How to convert row of widgets into column of widgets in flutter based on screen size?
How to run Flutter programs from GitHub?
How to get screen orientation in flutter?
NavigationRail example in flutter