# rntpc_react-native-toast **Repository Path**: openharmony-sig/rntpc_react-native-toast ## Basic Information - **Project Name**: rntpc_react-native-toast - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://gitee.com/openharmony-sig/rntpc_react-native-toast - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-14 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🚨 **重要提示 | IMPORTANT** > > **⚠️ 此代码仓已归档。新地址请访问 [rntpc_react-native-toast](https://gitcode.com/openharmony-sig/rntpc_react-native-toast)。| ⚠️ This repository has been archived. For the new address, please visit [rntpc_react-native-toast](https://gitcode.com/openharmony-sig/rntpc_react-native-toast).** > --- > # React Native Toast (remobile) A android like toast for react-native support for ios and android ## Installation ```sh npm install @remobile/react-native-toast --save ``` ### Installation (iOS) * Drag RCTToast.xcodeproj to your project on Xcode. * Click on your main project file (the one that represents the .xcodeproj) select Build Phases and drag libRCTToast.a from the Products folder inside the RCTToast.xcodeproj. * Look for Header Search Paths and make sure it contains both $(SRCROOT)/../../../react-native/React as recursive. ### Installation (Android) ```gradle ... include ':react-native-toast' project(':react-native-toast').projectDir = new File(settingsDir, '../node_modules/@remobile/react-native-toast/android') ``` * In `android/app/build.gradle` ```gradle ... dependencies { ... compile project(':react-native-toast') } ``` * register module (in MainApplication.java) ```java ...... import com.remobile.toast.RCTToastPackage; // <--- import ...... @Override protected List getPackages() { ...... new RCTToastPackage(), // <------ add here ...... } ``` ``` ### Screencasts ![ios](https://github.com/remobile/react-native-toast/blob/master/screencasts/ios.gif) ## Usage ### Example ```js var React = require('react'); var ReactNative = require('react-native'); var { StyleSheet, View, Image } = ReactNative; var Toast = require('react-native-toast'); var Button = require('@remobile/react-native-simple-button'); module.exports = React.createClass({ render() { return ( ); }, }); var styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'space-around', alignItems: 'center', backgroundColor: 'transparent', paddingVertical:150, } }); ``` ### HELP * look https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin ### thanks * this project come from https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin ### see detail use * https://github.com/remobile/react-native-template