Commit 6b716ac5 by Giang Tran

update code

parent baefc76e
......@@ -4,6 +4,7 @@ import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import io.invertase.firebase.RNFirebasePackage;
import com.oblador.vectoricons.VectorIconsPackage;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
......
rootProject.name = 'Invest'
include ':react-native-firebase'
project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android')
include ':react-native-vector-icons'
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
......
......@@ -864,7 +864,7 @@
CODE_SIGN_ENTITLEMENTS = Invest/Invest.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
DEVELOPMENT_TEAM = MXZ24GRH48;
ENABLE_BITCODE = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
......@@ -873,7 +873,7 @@
);
INFOPLIST_FILE = Invest/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.3;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
......@@ -897,11 +897,11 @@
CODE_SIGN_ENTITLEMENTS = Invest/Invest.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
DEVELOPMENT_TEAM = MXZ24GRH48;
INFOPLIST_FILE = Invest/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.3;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CLIENT_ID</key>
<string>1070545778193-1f50lidmpnp57s1eqgir4stht3f1ggn3.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.1070545778193-1f50lidmpnp57s1eqgir4stht3f1ggn3</string>
<key>ANDROID_CLIENT_ID</key>
<string>1070545778193-ms07g1dog8lvkismot205eji0m624lkg.apps.googleusercontent.com</string>
<key>API_KEY</key>
<string>AIzaSyD-yEnw8BpGPNziPvPNx9BInK-U1dDLQQM</string>
<key>GCM_SENDER_ID</key>
<string>1070545778193</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>dcv.investcustomer.vn</string>
<key>PROJECT_ID</key>
<string>investcustomer</string>
<key>STORAGE_BUCKET</key>
<string>investcustomer.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<true></true>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:1070545778193:ios:de8b945376b0af910a23b0</string>
</dict>
</plist>
\ No newline at end of file
......@@ -63,6 +63,7 @@
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
<string>processing</string>
<string>remote-notification</string>
</array>
<key>UILaunchStoryboardName</key>
......@@ -75,6 +76,10 @@
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string>dcv.investcustomer.vn</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
......
......@@ -85,6 +85,7 @@ target 'Invest' do
target 'InvestTests' do
inherit! :complete
# Pods for testing
......
......@@ -653,6 +653,6 @@ SPEC CHECKSUMS:
Yoga: 3ebccbdd559724312790e7742142d062476b698e
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
PODFILE CHECKSUM: ce9f5d6c1d33ca001c74f3b2f6dffc5fa71bd125
PODFILE CHECKSUM: 1b7b16492d91a4bb75d7a167904640eb35cf5e3c
COCOAPODS: 1.10.1
......@@ -15,6 +15,7 @@ export default function App() {
<TextInput
style={styles.input}
onBlur={onBlur}
placeholderTextColor={R.colors.placeHolder}
onChangeText={(value) => onChange(value)}
value={value}
/>
......@@ -30,6 +31,7 @@ export default function App() {
render={({onChange, onBlur, value}) => (
<TextInput
style={styles.input}
placeholderTextColor={R.colors.placeHolder}
onBlur={onBlur}
onChangeText={(value) => onChange(value)}
value={value}
......
......@@ -62,6 +62,7 @@ const HeaderHome = (props) => {
{openSearch ? (
<TextInput
placeholderTextColor={R.colors.placeHolder}
style={styles.txtInput}
onChangeText={(val) => setTxtSearch(val)}
value={txtSearch}
......
......@@ -45,6 +45,7 @@ const HeaderSearch = (props) => {
{openSearch ? (
<TextInput
placeholderTextColor={R.colors.placeHolder}
style={styles.txtInput}
onChangeText={(val) => setTxtSearch(val)}
value={txtSearch}
......
......@@ -17,6 +17,7 @@ const InputComponent = (props) => {
{title ? title : ''}
</Text>
<TextInput
placeholderTextColor={R.colors.placeHolder}
maxLength={maxLength}
onChangeText={(val) => onChangeText(val)}
style={{
......
......@@ -15,6 +15,7 @@ const InputIcon = (props) => {
maxLength={maxLength}
onChangeText={(val) => onChangeText(val)}
style={txtInput}
placeholderTextColor={R.colors.placeHolder}
placeholder={placeholder}
secureTextEntry={isPassWord}
/>
......
......@@ -18,6 +18,7 @@ const TextField = (props) => {
</Text>
<TextInput
maxLength={maxLength}
placeholderTextColor={R.colors.placeHolder}
onChangeText={(val) => onChangeText(val)}
style={{
height: HEIGHTXD(109),
......
......@@ -21,6 +21,7 @@ const TextField = (props) => {
onChangeText={(val) => onChangeText(val)}
multiline={true}
numberOfLines={3}
placeholderTextColor={R.colors.placeHolder}
style={{
color: 'black',
maxHeight: HEIGHTXD(259),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment