diff --git a/docusaurus/docs/reactnative/assets/guides/custom-poll-flow/attachment-picker-poll-button.png b/docusaurus/docs/reactnative/assets/guides/custom-poll-flow/attachment-picker-poll-button.png new file mode 100644 index 000000000..d4cf37995 Binary files /dev/null and b/docusaurus/docs/reactnative/assets/guides/custom-poll-flow/attachment-picker-poll-button.png differ diff --git a/docusaurus/docs/reactnative/assets/guides/custom-poll-flow/enable-polls.png b/docusaurus/docs/reactnative/assets/guides/custom-poll-flow/enable-polls.png new file mode 100644 index 000000000..82fefd237 Binary files /dev/null and b/docusaurus/docs/reactnative/assets/guides/custom-poll-flow/enable-polls.png differ diff --git a/docusaurus/docs/reactnative/guides/custom-poll-flow.mdx b/docusaurus/docs/reactnative/guides/custom-poll-flow.mdx index a90764fce..8d7495ce3 100644 --- a/docusaurus/docs/reactnative/guides/custom-poll-flow.mdx +++ b/docusaurus/docs/reactnative/guides/custom-poll-flow.mdx @@ -22,6 +22,14 @@ In this cookbook we'll go over how we can create and customize a `Channel` scree This cookbook assumes that you've already set up a screen that is able to display a `Channel` with a `MessageList` inside. As `poll`s are tightly coupled with messages, we need to have this working before we add the `poll` message type. +Polls are disabled by default and can be enabled through the Stream Dashboard by toggling the `Poll` button. + +![Enable Polls](../assets/guides/custom-poll-flow/enable-polls.png) + +Doing that will include the `Poll` button in your attachment picker: + +![Enable Polls](../assets/guides/custom-poll-flow/attachment-picker-poll-button.png) + It also assumes that you have a functioning `chatClient` that is used elsewhere. For illustration purposes, we are going to be using the `React Navigation` library for navigation (however, any navigation library can be used).