Socket
Socket
Sign inDemoInstall

idea-native-clock

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    idea-native-clock

Analog Clock for React Native


Version published
Maintainers
1
Install size
8.22 kB
Created

Readme

Source

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.

Keywords

FAQs

Last updated on 22 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc