Show element overlapping bottom navigation bar

0
    Hi,   I want to have a button overlaying the default bottom navigation bar in my native mobile app (see the screenshot). I could make a bottom bar component myself, but I want to use the default features/behavior from the default Mendix navigation bar.   Changing the zIndex or Elevation of the button element does not seem to work, so I was wondering if anyone has a working example or tip for me.        
asked
2 answers
0

According to docs:

Native navigation styling

you can make only selected icon to stand out: 

export const navigationStyle = {
  bottomBar: {
    container: {
      overflow: 'visible'
    },
    selectedIcon: {
     size: 100
    }
  }
};

 

answered
-1

Maybe the floating action button widget from the appstore would work in your case? See https://marketplace.mendix.com/link/component/207473

answered