recolog

@t0m0120

ReactNativeで定期購読の編集ページに飛ばす

January 26, 2019

Subscription編集ページに飛ばすLink

ios - Link to app manage subscriptions in app store - Stack Overflow

itms-apps://apps.apple.com/account/subscriptionsで飛ばす。

<Button
  style={[s.upgrade_button, s.current_plan_button]}
  onPress={() =>
    Linking.openURL('itms-apps://apps.apple.com/account/subscriptions')
  }
>
  <Text style={s.current_plan_button_text}>定期購読を管理する</Text>
</Button>