import { faArrowLeft } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-native-fontawesome"; import { useNavigation } from "@react-navigation/native"; import React, { useEffect } from "react"; import { ScrollView, StyleSheet, Text, TouchableOpacity, View, } from "react-native"; import HTMLView from "react-native-htmlview"; import ReceiptCard from "../../components/profile/my_purchases/Receipt"; const ws = new WebSocket("ws://testapi.obpay.online:8080"); const MyWallet = () => { const navigation = useNavigation(); useEffect(() => { ws.onopen = () => { console.error("WebSocket connected------------------------------------------"); // You can send initial messages after the connection is established if needed ws.send('Hello, server!'); ws.send(JSON.stringify({ type: "join", userId: "meeeeeeeeeeee" })); ws.send( JSON.stringify({ type: "message", userId: userId, content: "hi I'm sending notiff", }) ); }; }, []) const info = `

 

Uploading your app to TestFlight and Google Play beta can be time-consuming (for example, waiting for the build to run through static analysis before becoming available to testers) and limiting (for example, TestFlight can only have one active build at a time). Both Android and iOS provide alternative mechanisms to distribute apps directly to testers, so they can download and install them to physical devices directly from a web browser as soon as the builds are completed.

EAS Build can help you with this by providing shareable URLs for your builds with instructions on how to get them running, so you can share a single URL with a teammate that'll include all of the information they need to test the app.

 

Xiaomi Pad 6 specs

11-inch WQHD+ (2880 x 1800) IPS LCD
144Hz refresh rate, DCI-P3, 309 ppi, Dolby Vision
Corning Gorilla Glass 3
Snapdragon 870 chipset
8-cores, up to 3.2GHz frequency
6, 8GB RAM
128, 256GB storage
13MP f/2.2 rear
8MP f/2.2 selfie shooter
Wi-Fi 6
Bluetooth 5.2
USB Type-C
Quad speakers, Dolby Atmos
MIUI Pad 14
8840mAh battery
33W charging rate
490g
Gravity Gray, Gold, Mist Blue

Xiaomi Pad 6 Camera Closeup

MinorBranchDocumentationLatest
nextmaster-npm
6.3release/6.3Official Websitenpm
5.1  release/5.1  release/5.1/README.mdnpm
4.2  release/4.2  release/4.2/README.mdnpm

 

`; return ( navigation.navigate("Home")} style={styles.backIcon} > My Wallet Content {/* */} {/* */} ); }; const styles = StyleSheet.create({ container: { backgroundColor: "#ffff", width: "100%", height: "100%", }, // img: { // height: 500, // width: 100, // }, p: { fontWeight: "600", fontSize: 16, }, wrapper: { height: "100%", width: "100%", }, header: { alignItems: "center", width: "100%", top: 0, paddingLeft: 15, flexDirection: "row", borderColor: "#ddd", paddingBottom: 15, borderBottomWidth: 1, }, headerText: { fontSize: 16, fontWeight: "600", marginLeft: 25, }, }); export default MyWallet;