dart - How to add Multiple Floating button in Stack Widget in Flutter - Stack Overflow

PHOTO EMBED

Thu Sep 14 2023 02:01:20 GMT+0000 (Coordinated Universal Time)

Saved by @Adorism80 #dart

floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: Padding(
  padding: const EdgeInsets.all(8.0),
  child: Row(
    mainAxisAlignment: MainAxisAlignment.spaceBetween,
    children: <Widget>[
      FloatingActionButton(
        onPressed: () {},
        child: Icon(Icons.navigate_before),
      ),
      FloatingActionButton(
        onPressed: () {},
        child: Icon(Icons.navigate_next),
      )
    ],
  ),
)
content_copyCOPY

I used this in my goMeega App before changing back to a single floating action button. It looked great!

https://stackoverflow.com/questions/50839282/how-to-add-multiple-floating-button-in-stack-widget-in-flutter