Posts by kivul • 190 points
5 posts
-
1
votes1
answer30
viewsA: Is there any way to use self Execute functions in vb6?
Unfortunately no, VB6 only accepts Functions or Subs declared in the form scope. I worked with VB6 for some time and have never seen anything like it. More information:…
-
0
votes2
answers68
viewsA: Error with navigation buttons
I made some changes to your code and put an explanation below import React, { Component } from 'react' import { View, Text, StyleSheet, TouchableOpacity, TextInput } from 'react-native' class…
-
1
votes2
answers347
viewsA: I can’t save data to the Firebase database - React Native
The problem with your code is in componentWillMount(). Your App is not being initialized in its function surrender(). Causing the componentWillMount() not be executed. Example of component…
-
1
votes2
answers232
viewsA: How to identify text size (Lenght) with a state
The best way is inside your Textinput you add an event of onSubmitEditing Example: onSubmitEditing={() => { this.checkCPF(); }} That is, onSubmitEditing will be called when you finish typing the…
-
1
votes3
answers2202
viewsA: Test an App on android. React Native
Expo is the solution for you. Take a look here: https://expo.io/tools But basically, you install the APP Expo on your mobile phone, also installs in the project: npm install expo-cli --global It…