Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Import the RDStoryView property.

    Code Block
    languagejs
    import { RDStoryView } from 'react-native-related-digital'

  • Alttaki kodu ekleyinAdd the code below.
    actionId: RMC panelinde story özelliğini oluşturduğunuz url’deki actionid parametresinin değeri. Eğer bu parametreyi göndermezseniz hesabınızda tanımlanmış en son story’i getirecektirThe value of the actionid parameter in the url where you created the story property in the RMC panel. If you don't send this parameter, it will fetch the last story defined in your account.

    Code Block
    languagejs
    <RDStoryView
      actionId={'1'} // opsiyonel
      onItemClicked={(data) => { 
        console.log('Story data', data)
      }}
      style={{ flex: 1 }}
    />

...