結論
showShareActionSheetWithOptions()は、リモートファイルを指定することができない模様
詳細
以下のように記述していた。
Activity View Controllerは表示されるが、「画像を保存」が表示されずに困っていた。
urlの部分をローカルファイルパスに変更したところ、「画像を保存」や「共有アルバム(フォトライブラリ)」が現れてくれた。
<View style={styles.isCenter}>
<Button
title="save"
onPress={Platform.OS === 'ios'
? () => ActionSheetIOS.showShareActionSheetWithOptions(
{ url: 'https://facebook.github.io/react-native/img/header_logo.png' },
() => {},
() => console.tron.log('success.'),
) : () => {
// abbreviation for android
}
}
/>
</View>