Use of material design components in codename one - codenameone

Is there a way to intergrate material design components in my application? I find them very nice and would like to add them to my application.

Related

How to use MUI inside CMS library?

We are currently using React Material UI for a big e-commerce site that requires a CMS.
The problem is that we need to give the elements in the CMS (that are configurable as pure HTML containers) the ability to use the same component animation and style as what we used in the MUI configuration in react.
Is there any way we can achieve this?
In other words, how can we create a html library from React Material UI?

Custom Design in Material UI

the landing page of Material UI has slick design (both layout and components). I wonder if I can use this design instead of default Material Design. I couldn't find any information about this design in the docs.
I believe you are looking for the source code of mui documentation website. Here's the link
If you are looking for theme specifically then this link should help you.
If you mean their home page, it's actually designed by Material UI, you can check this by seeing the source page.
Mostly Material UI components in the home page are designed using makeStyle so they are not in the default style.
https://mui.com/styles/api/#heading-makestyles-styles-options-hook

How to combine different react components?

I have made a project for mobile UI and one for desktop UI for website. How can I combine both by using something like
react-responsive is there any way to do this.

How to manage styling using JS in React?

We are developing an application in React which has components like Input, Select, Accordion etc which can be re-used in a lot of other projects in our organisation to maintain a consistency.
We are using Material-UI styles to style our components using Javascript rather than CSS so that when other developers reuse the components they don't override the existing styling with CSS.
However, we have realised that the build time is long and when the components will be re-used in all the other projects,they will have a dependency on Material-UI which we don't want.
Can you guys please suggest on what is the best approach to maintain such application which can be re-used elsewhere and the best way to maintain the styles?

Integration Material-UI with third-party react components

Is there any recomended way how to style third-party components such as react-paginate
with Material-UI primitives (bars, buttons)?
Is it possible at all?
One of the best ways to do this today is use styled-components. These allow you to pass in any 3rd party component and style them to your needs. Here is any example of how to do this with antd. Would be similar for you, except using Material UI components.

Resources