Skip to content

Commit 8d30675

Browse files
Added scroll month calender components
1 parent c07a7e5 commit 8d30675

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* Sample React Native App
3+
* https://github.com/facebook/react-native
4+
*
5+
* @format
6+
* @flow
7+
*/
8+
9+
import React, {Component} from 'react';
10+
import {Platform, StyleSheet, Text, View, TouchableOpacity} from 'react-native';
11+
import style from './style'
12+
13+
type Props = {};
14+
export default class NumberView extends Component<Props> {
15+
render() {
16+
return (
17+
18+
);
19+
}
20+
}
21+
22+
NumberView.defaultProps = {
23+
initialValue:0,
24+
enableDefaultStyles:true,
25+
themeColor:false,
26+
maxLimit:false
27+
}

components/ScrollMonthCalender/style.js

Whitespace-only changes.

0 commit comments

Comments
 (0)