當 display: flex 配合 justify-content: center 使用時可以讓view水平居中 而配合 align-items: center 用時可以
{
align-items: center; /** 垂直居中*/
display: flex;
justify-content: center; /** flex 屬性, 水平居中**/
}