I am using the great library MaterialDrawer to add a navigation drawer to my app. It's working very well so far, but I'm wondering if there's a way to add multiple items per row. For example, to show multiple related settings the can be toggled.
I went through the library documentation and the issue tracker on Github but couldn't find anything relevant.
It's possible to create your own custom layout inside the
NavigationViewin theDrawerLayout. For example, the following code has a 4 rows with 3 items in each row.The
MaterialDrawerdocumentation does state that it's possible to use a Custom DrawerLayout Implementation, But I've never done that before, So I'm unable to provide a sample for that at the moment.