Skip to content

Component_template

duskcloudxu edited this page Jun 8, 2020 · 3 revisions

Intro

Here put some brief introduction for the component

usage example and preview

[some gif] or [some screenshot]

//some code example there, it should be a complete case including all the variables used in your case, like:
const [ image, setImage ] = useState({} as ImageInfo);
return (
	<KeyboardAvoidingView style={styles.outerContainer} behavior="padding">
		<FormImageInput
			label="Business License Verification"
			value={image}
			setValue={setImage}
			status={image?.uri ? 'success' : 'none'}
			shape="circular"
		/>
	</KeyboardAvoidingView>
);

related file

here to attach a link to the component file on Github, like the example for Button Component:

component directory

Getting Started

Installation Guide

Project structure overview and Contribution Guide

Component Documentation

Clone this wiki locally