LoginSignup
1
0

More than 3 years have passed since last update.

【React Native(Android)】Headerのタイトルを中央寄せする

Posted at

前提

  • ReactNative 0.61.4
  • react-navigation v5

問題

Androidのタイトルがセンタリングできない。
どこをいじったらいいのか。

image.png

方法

NavigatorのscreenOptionsに headerTitleAlign: 'center' を追加する。

コードは以下。

const RegisterScreen = () => (
  <RegisterStack.Navigator
    ...
    screenOptions={{ headerTitleAlign: 'center' }} //これを追加
  >
    <RegisterStack.Screen
      ...
    />
  </RegisterStack.Navigator>

参考文献

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0