You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a component for the stream description overlay that is to be shown when the user taps on a stream on the Explore streams screen. As props, take:
A boolean open, that decides if the overlay is open or not.
A stream object of type IStream.
A boolean that specifies if the stream is followed by the user or not.
An onButtonPress function of type () => void: call this function when the user taps on the Subscribe (or Unsubscribe) button.
Overlay from React Native Elements seems good for making this.
The text was updated successfully, but these errors were encountered:
Create a component for the stream description overlay that is to be shown when the user taps on a stream on the Explore streams screen. As props, take:
open
, that decides if the overlay is open or not.stream
object of typeIStream
.onButtonPress
function of type() => void
: call this function when the user taps on the Subscribe (or Unsubscribe) button.Overlay
from React Native Elements seems good for making this.The text was updated successfully, but these errors were encountered: