AJJ
AJJ

Reputation: 2074

Alternative to using multiple FloatingActionButtons?

Right now I am using three FloatingActionButtons to represent add, save, and reset operations. However according to Material Design guidelines, you shouldn't use more than one such button: https://material.google.com/components/buttons-floating-action-button.html

What is the accepted practice? Is there another sort of bar that is better for holding onto multiple functionality buttons?

Upvotes: 2

Views: 1216

Answers (1)

REG1
REG1

Reputation: 486

I would suggest using a single action button that transforms into related actions, i.e., add, save and reset. So you'll have something like this after the floating action button was pressed: Example of floating action button transformed into related actions

If you choose to do this you might want to check out this: Morph floating action button into related actions

Another option could be transforming the floating action button into a toolbar like this:

floating action button transformed into toolbar

In that case you will want to check this out: Floating Action Button expansion

Upvotes: 1

Related Questions