React Native renderer for AdaptiveCards
Перейти к файлу
Weikang Li d9ab1d7a48 modify readme and add scrollbar to error message list 2019-08-01 15:41:32 +08:00
dist fix copy crash issue 2019-07-25 16:32:00 +08:00
examples fix copy crash issue 2019-07-25 16:32:00 +08:00
src fix copy crash issue 2019-07-25 16:32:00 +08:00
tool modify readme and add scrollbar to error message list 2019-08-01 15:41:32 +08:00
.gitignore Merged PR 686347: Align the render rule with other platforms and enhance extensibility 2018-06-29 09:01:24 +00:00
README.md modify readme and add scrollbar to error message list 2019-08-01 15:41:32 +08:00
gulpfile.js Upgrade gulp 2019-02-18 14:08:35 +08:00
package.json v0.1.27 2019-07-19 11:35:13 +08:00
screenshot.gif Update readme.md 2017-11-20 17:30:10 +08:00
tsconfig.json Merged PR 760152: Add schema validation tools 2018-09-06 13:43:59 +00:00
tslint.json Merged PR 710005: Make AdaptiveCard support PeoplePicker 2018-07-23 07:04:12 +00:00
yarn.lock Upgrade gulp 2019-02-18 14:08:35 +08:00

README.md

Introduction

React Native renderer for AdaptiveCards.

Sample Screenshot

Online renderer and debugging tool can be found here

Getting Started

Basic Usage

  1. Installation
$ npm install react-native-adaptivecards

or by Yarn

$ yarn add react-native-adaptivecards
  1. Implementation
  • Import to the component where you want to show an AdaptiveCards
import AdaptiveCard from 'react-native-adaptivecards';
  • Send initial props
    <AdaptiveCard adaptiveCard={} overrideStyle={} />

Properties

Prop Required Type Description
adaptiveCard Yes object Json object based on AdaptiveCards schema
style No object Customized styles
config No, default{...} object Customized config
onSubmit No function Submit Action
onOpenUrl No function OpenUrl Action
onCallback No function Callback Action
onFocus No function Focus Action
onBlur No function Blur Action
onError No function Error Action
onInfo No function Info Action
onWarning No function Warning Action

Examples

$ cd examples
$ yarn
$ yarn ios