1.0.3 • Published 4 years ago

react-native-countdown-fix v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

react-native-countdown-fix

A React Native component that converts a timestamp of a future date to a readable countdown clock, based on a format.

Installation

npm install --save react-native-countdown-fix

Usage

import React, { Component } from 'react';
import { Countdown } from 'react-native-countdown-fix';

export default class App extends Component {
    render() {
        return <Countdown finishTime={1543622400} />
    }
}

Properties

NameTypeDefaultDescription
formatstring{d}:{h}:{m}:{s}The format that will be applied to the milliseconds
finishTimenumberREQUIREDThe future date timestamp
textStyleText StyleThe style that will be applied to the countdown text
afterEndcallBackfunction after end countdown