Recently, I came across this example on their website:
https://codesandbox.io/s/0f50jf?file=/demo.js
I've been attempting to align all toolbar elements in the center using:
sx= {{
justifyContent: 'center',
alignItems: 'center'}}
However, none of my attempts seem to be working
Is there a way to successfully implement
justifyContent
in conjunction with the toolbar?
I also tried the solution mentioned in React material-ui: centering items on Toolbar
but unfortunately, it didn't work for me