Skip to content

Commit 94abfed

Browse files
Sankhadeep RoySankhadeep Roy
authored andcommitted
toolbar, button and input ready
2 parents 45b619f + 0b6ab25 commit 94abfed

7 files changed

Lines changed: 123 additions & 1013 deletions

File tree

Components/Base/NativeBaseComponent.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33

44
import React, {Component, View} from 'react-native';
5-
import darkTheme from '../Themes/dark';
5+
import lightTheme from '../Themes/light';
66

77

88
export default class NativeBaseComponent extends Component {
@@ -11,6 +11,6 @@ export default class NativeBaseComponent extends Component {
1111
}
1212

1313
getTheme() {
14-
return this.context.theme || darkTheme
14+
return this.context.theme || lightTheme
1515
}
1616
}

Components/Themes/dark.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ module.exports = {
7575
},
7676

7777

78-
inputColor: "gray",
79-
inputBorderColor: "fff",
78+
inputColor: "#fff",
79+
inputBorderColor: "#fff",
8080
inputHeightBase: 40,
8181
inputGroupMarginBottom: 10,
82-
inputColorPlaceholder: "#999",
82+
inputColorPlaceholder: "rgba(256,256,256,0.8)",
8383
inputPaddingLeft: 5,
8484
get inputPaddingLeftIcon () {
8585
return multiply(inputPaddingLeft, 8);;

0 commit comments

Comments
 (0)