1.0.3 • Published 5 years ago

idea-native-clock v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

React Native: idea-native-clock

GitHub package version github home platforms github home

github license

📖 Getting started

$ npm install idea-native-clock --save

💻 Usage

import * as React from 'react';
import { StyleSheet, Text, View, ImageBackground } from 'react-native';

import AnalogClock from 'idea-native-clock';

export default class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
       
       //automatic time
          <AnalogClock
            size={100}
          />
          <View style={{ marginBottom: 5 }} />

          //if you want to set time manually 
          <AnalogClock
            colorClock="#2196F3"
            colorNumber="#000000"
            colorCenter="#00BCD4"
            colorHour="#FF8F00"
            colorMinutes="#FFC400"
            hour="2"
            minutes={55}
            seconds={60}
          />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    backgroundColor: '#ecf0f1',
    padding: 8,
  },
});

💡 Props

PropTypeDefaultNote
sizenumber180Clock size.
colorClockstringrgba(255,255,255,0.8)Clock color.
colorNumberstring#ffffff #ffffffColor of the clock numbers.
colorCenterstring#ffffff #ffffffClock center color.
colorHourstring#ffffff #ffffffClock hour hand color.
colorMinutesstringrgba(255,255,255,0.7)Clock minute hand color.
colorSecondsstringrgba(255,255,255,0.7)Clock Second hand color.
hournumberHour.
minutesnumberMinutes.
secondsnumberSeconds.

📜 License

This library is provided under the MIT License.