React Native renderer for AdaptiveCards
Перейти к файлу
Dongyu Zhao 730bf19f0d
Added deprecation notice to README (#107)
Co-authored-by: Matt Hidinger <matt.hidinger@gmail.com>
2021-03-29 11:45:42 +08:00
dist Support RN v0.60.0, use react-native-webview instead RN build-in WebView (#93) 2019-09-17 18:02:35 +08:00
examples Support RN v0.60.0, use react-native-webview instead RN build-in WebView (#93) 2019-09-17 18:02:35 +08:00
src Support RN v0.60.0, use react-native-webview instead RN build-in WebView (#93) 2019-09-17 18:02:35 +08:00
tool Support RN v0.60.0, use react-native-webview instead RN build-in WebView (#93) 2019-09-17 18:02:35 +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 Added deprecation notice to README (#107) 2021-03-29 11:45:42 +08:00
gulpfile.js Upgrade gulp 2019-02-18 14:08:35 +08:00
package.json Support RN v0.60.0, use react-native-webview instead RN build-in WebView (#93) 2019-09-17 18:02:35 +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 Support RN v0.60.0, use react-native-webview instead RN build-in WebView (#93) 2019-09-17 18:02:35 +08:00

README.md

DEPRECATION NOTICE

This package is no longer in development.

Please migrate to adaptivecards-reactnative

============================================

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