react-native-gtlcomponent v1.0.31
react-native-gtlcomponent
Getting started
$ npm install react-native-gtlcomponent --save
Mostly automatic installation
$ react-native link react-native-gtlcomponent
Sample code at : https://github.com/nikhilgatewaycorp/gtllibcomponent
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-gtlcomponentand addRNGtlcomponent.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNGtlcomponent.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.reactlibrary.RNGtlcomponentPackage;to the imports at the top of the file - Add
new RNGtlcomponentPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-gtlcomponent' project(':react-native-gtlcomponent').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gtlcomponent/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-gtlcomponent')
Windows
- In Visual Studio add the
RNGtlcomponent.slninnode_modules/react-native-gtlcomponent/windows/RNGtlcomponent.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using Gtlcomponent.RNGtlcomponent;to the usings at the top of the file - Add
new RNGtlcomponentPackage()to theList<IReactPackage>returned by thePackagesmethod
Usage
==============================Webservices usage========================== in Root path please setup as below
export const apiConfig = { productionBaseURL: "xxx path", testingBaseURL: "xxx path", developmentBaseURL: "xxx path",/this must be exist/ alphaBaseURL: "xxx path" };
API.getInstance().build(DevelopmentMode.DEVELOPMENT, apiConfig);
then call api in your JS file as below sample
const headers = { 'type': ContentType.applicationjson }; const params = new URLSearchParams(); params.append('UserName', username);
API.getInstance().Fetch({endpoint: "Credential/ForgotPassword",method:Method.GET}}.forgotPassword, headers, params, false,
{
SuccessCallback: response => {
SuccessCallback(response);
},
FailureCallback: response => {
FailureCallback(response);
}
})
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago