1.0.4 • Published 5 years ago

react-native-typeform-embed v1.0.4

Weekly downloads
1,055
License
ISC
Repository
github
Last release
5 years ago

React Native Typeform Embed

A React-Native wrapper for Typeform Embed SDK. Inspired by React Typeform Embed

Usage

yarn add react-native-typeform-embed
import React from "react";
import TypeformEmbed from "react-native-typeform-embed";

class App extends React.Component {
  render() {
    return (
      <TypeformEmbed
        url="https://demo.typeform.com/to/njdbt5"
        onSubmit={() => alert("Submitted!")}
      />
    );
  }
}

See the source for more examples.

Props

Most props are based on the official parameters from Typeform Embed SDK

PropDescriptionDefault
urlThe url of the Typeform form to display""
styleAdditional styles for the component{}
hideHeaderstrue if you want to hide the header that displays for question groups and long questions that require scrolling. Otherwise, falsefalse
hideFootertrue if you want to hide the footer that displays a progress bar and navigation buttons. Otherwise, false.false
opacityBackground opacity. Valid values include any integer between 0 (completely transparent) and 100 (completely opaque). Note that this isn't the same as the CSS opacity scale (0-1).Widget mode option100
buttonTextText to display in the "Start" button. Displayed only on touch-screen and mobile devices.Widget mode option"Start"
onSubmitPRO accounts only. Callback event that will execute immediately after a respondent successfully submits the typeform. N/A
webViewProps passed to the WebView that displays the form{}

License

Code released under the MIT license.

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago