Giter Club home page Giter Club logo

react-native-show-market-binance's Introduction

react-native-show-market-binance

package to show crypto market symbols information

Installation

run npm i react-native-show-market-binance

  • install dependencies:
    run npm install or yarn

and import in your code:
import { ReactNativeShowMarketBinance } from "react-native-show-market-binance";

Methods

  • InstantMethodForTest(enableLog?: boolean) : rapid example test for show the symbos: "btcbrl", "ethbrl", "usdtbrl", "bnbbrl", "xrpbrl" and "solbrl";
  • ConsultSymbol(symbol: string, enableLog?: boolean): select only one pair symbols to return.
  • ConsultVariousSymbols(symbols: string[], enableLog?: boolean): set one or more symbols in 'symbols' string[] to subscribre then and return data of all symbols.

*Tips: for enable log pass true in enableLog, or for disable, pass false or nothing.*

Example of return:

image

For test:

The first step is to make sure you have the necessary requirements to run the Expo CLI on your computer:

  • Node.js LTS
  • npm (ou Yarn):

Using NPM: npm install -g expo-cli

To verify that the installation was successful, run the command below: expo --version


With the CLI installed on your computer, you can create Expo projects (see Apenndix) and run the 'metro bundler' to serve your code, but to run the app on your mobile you need to install the Expo Go application. (To install it, just search the stores for the Expo Go app) for taking the code that metro bundler sends and displaying your React Native app on screen. but before, modify your App.tsx (or index.js) of example to :

import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View, ScrollView } from "react-native";
import { ReactNativeShowMarketBinance } from "react-native-show-market-binance";

export default function App() {
  const serverMessages = ReactNativeShowMarketBinance().InstantMethodForTest(true);

  return (
    <View style={styles.container}>
      <StatusBar style="auto" />

      <Text>'Preparing...'</Text>

      <ScrollView>
        {serverMessages.map((item, ind) => {
          return <Text key={ind}>{item}</Text>;
        })}
      </ScrollView>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
});

With the app installed and the Expo project running on your computer, just connect your cell phone to the same network as your computer and read the QR Code displayed on your browser or terminal

Appendix

  • create Expo projects: After install expo-cli, enter a folder of your choice and open powershell / cmd here. run expo init example, select blank with typescript and after enter in example: cd ./example/

react-native-show-market-binance's People

Contributors

thalyssilva avatar

Stargazers

Jofre Martins Marques avatar Paulo Henrique Mendes de Souza avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.