test
npm install react-native-animated-pagination-dotreact-native-animated-pagination-dot
=============
Paginate component for React native simple dot with moving animation
-----



-----
Installation can be done through npm:
``shell`
npm i react-native-animated-pagination-dot --save
-----
js
import React from 'react'
import {View} from 'react-native'
import PaginationDot from 'react-native-animated-pagination-dot'const ExampleDotPaginate:React.FC = ()=>{
const [curPage] = React.useState(0);
return (
activeDotColor={'black'}
curPage={curPage}
maxPage={20}
/>
)
}
export default ExampleDotPaginate;
`-----
Example

-----
API
$3
| Prop | Type | Required(Default Value) | Description |
|--------------------| ----------------------------|----------------------------|----------------------------------------------------------------|
|
curPage | number | required | Pagination curernt Page |
| maxPage | number | required | Total Page in Pagination |
| activeDotColor | string | required | Active Dot Color. dot will control by opacity |
| inactiveDotColor | string | undefined | InActive Dot Color. dot will control by opacity |
| sizeRatio | number | 1.0 | Customize Dot Size. minimum value is 1.0 (recommend 1.0 ~ 2.0) |
| vertical | boolean` | false | Dot direction |See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT.
pratt