Expansion Panel

You can add the component on any page in the template. You need to follow the steps given below: ‌

Step 1: You need to create a state and function to handle it’s event. Also you need to add the code of expansion panel in the page where you want to add the component. Please check the code snippet given below, we have added the expansion panel in the Ecommerce Dashboard:

/**
* Ecommerce Dashboard
*/

import React, { Component } from 'react'
...

export default class EcommerceDashboard extends Component {
// Expansion Panel State
state = {
expanded: null,
};

// Expansion Panel Function
handleChange = panel => (event, expanded) => {
this.setState({
expanded: expanded ? panel : false,
});
};
render() {
...
return (
<div className="ecom-dashboard-wrapper">
...
// Expansion Panel Code
<div>
<ExpansionPanel>
<ExpansionPanelSummary expandIcon={<i className="zmdi zmdi-chevron-down"></i>}>
<Typography>Expansion Panel 1</Typography>
</ExpansionPanelSummary>
<ExpansionPanelDetails>
<Typography>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex,sit amet blandit leo lobortis eget.</Typography>
</ExpansionPanelDetails>
</ExpansionPanel>
...
</div>
</div>

Step 2: Now Import the component from its parent library.

import ExpansionPanel from '@material-ui/core/ExpansionPanel';
import ExpansionPanelDetails from '@material-ui/core/ExpansionPanelDetails';
import ExpansionPanelSummary from '@material-ui/core/ExpansionPanelSummary';
import Typography from '@material-ui/core/Typography';‌

We have given you an example of adding an expansion panel on the Ecommerce Dashboard.

You can check some other layouts of expansion panel below. For adding any of the below layout in the template, please check their relative code in the src->routes->components->expansion-panel->components folder.

Last Updated 4 years ago
Generic selectors
Exact matches only
Search in title
Search in content
Search in posts
Search in pages