Android Studio, center the application name

0

How do I centralize the circled text?

    
asked by anonymous 06.10.2018 / 00:15

1 answer

0

Use display: flex together with justify-content: center in a parent element.

So it will display the result you expect, see the example I left below.

I hope I have helped.

#id-text{
  display: flex;
  justify-content: center;
}
<div id="id-text">
  <h1>GroupTCC</h1>
</div>
    
06.10.2018 / 03:23