from L301-L313 we can see there is no prop set the root FAB's style
but in here
we can change the sub fab use style
let me change the root fab's background color not use the theme provider
PS:
sorry, use theme also cannot change the backgroundColor, because there is no theme prop in parent FAB.Group, the FAB cannot get the theme.colors. accent.
just copy from here: https://callstack.github.io/react-native-paper/fab-group.html
| software | version
| --------------------- | -------
| react-native-paper | 2.2.6
Have you tried the color prop? https://callstack.github.io/react-native-paper/fab-group.html#color
@satya164 hi,
color prop is for Custom color for the FAB.
not Custom background color for the FAB.
it change the icon's color, not the button's color.
To change the background color of the FAB you can pass the accent color in theme:
theme={{ colors: { accent: 'blue' } }}
Though it'll be useful to add a fabStyle prop which passes the styles to the underlying fab.
hmm... ok, can change it now. but i definite want a fabStyle or something like style={{ fab: {} }}.
or , doc it in https://callstack.github.io/react-native-paper/fab.html#style
Close: #677
Your documentation is very minimal,even changing a FAB color is a problem. You can't change the size of the icon too
@lutakyn with a recent change for FAB.Group, styling it got much easier. See:
https://github.com/callstack/react-native-paper/pull/758/files
There's now a fabStyle prop added
@lutakyn it's an open source project. pull requests to documentation are welcome.
Any option to style the actions as below attached image.
Here I need to show the label below the icon.

Hii, is there any way to show this vertical FAB to horizontally?
Most helpful comment
To change the background color of the FAB you can pass the
accentcolor in theme:Though it'll be useful to add a
fabStyleprop which passes the styles to the underlying fab.