How to center Dialog name on Material-UI?

How can I call the center in the dialog (Material-UI)? Mi code

<Dialog open={this.state.open} titleStyle = {styles.Dialog} title='Title centered please!' actions={standardActions} onRequestClose={this.handleRequestClose} > 

Boby..asdasdasd dialog

title with text "Ingreso de Procedureimientos" focused on

+5
source share
1 answer

This works for me:

 <Dialog titleStyle={{textAlign: "center"}} ... /> 
+10
source

Source: https://habr.com/ru/post/1244846/


All Articles