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>