Is there a component like speed-dial in framework 7?

Hi,

I wonder if there is something similar to speed-dial or is it possible to do it without pain

I use vue and some library gives read to use speed-dial component in their API, such as below

Thanks!

see: http://framework7.io/docs/floating-action-button.html

2 Likes

Thanks, and is it possible to use icons/imgs instead of string inside action menu ?

Icons are possible, look at Kitchen Sink
FAB & FAB Morph, you can find more examples there.

if you want as text nearby icons(Evernote example), it is not supported, you could do it by using css.

1 Like

kitchen example doesnt include floating action button with icon, only yours, thanks anyway

You can include an icon to each floating action button and sub actions.
e.g.

          <f7-fab-button>
            <i class="f7-icons size-23 orange" >person</i>
          </f7-fab-button>
1 Like