|
@@ -5,8 +5,7 @@ import Types from '../../lib/Types';
|
|
|
import {Button} from 'react-native-elements'
|
|
|
import Styles from './styles';
|
|
|
|
|
|
-console.log("WHATTTTTTTTTTTTTTTTT")
|
|
|
-console.log(Styles)
|
|
|
+
|
|
|
|
|
|
export default class ButtonComp extends Module {
|
|
|
constructor(props) {
|
|
@@ -40,10 +39,11 @@ export default class ButtonComp extends Module {
|
|
|
|
|
|
ButtonComp.Inputs = {
|
|
|
title: new Types.Text().require().default('Submit'),
|
|
|
- textColor: new Types.Text().require().color().default('black'),
|
|
|
- backgroundColor: new Types.Text().require().color().default('rgba(47, 150, 145, 1)'),
|
|
|
- borderRadius: new Types.Integer().require(),
|
|
|
- FontSize: new Types.Integer().require(),
|
|
|
+ textColor: new Types.Text().require().color().default('rgba(255, 255, 255, 1)'),
|
|
|
+ //
|
|
|
+ backgroundColor: new Types.Text().require().color().default('rgba(73, 156, 219, 1)'),
|
|
|
+ borderRadius: new Types.Integer().require().default(0),
|
|
|
+ FontSize: new Types.Integer().require().default(18),
|
|
|
width: new Types.Integer().require(),
|
|
|
height: new Types.Integer().require()
|
|
|
}
|