Skip to content

Instantly share code, notes, and snippets.

@diegolmello
diegolmello / README.md
Last active March 19, 2024 14:46
Embedding Rocket.Chat on iframe in Swift
@diegolmello
diegolmello / App.tsx
Last active March 19, 2024 14:47
Embedding Rocket.Chat on iframe in React Native
import React, {useRef} from 'react';
import {SafeAreaView} from 'react-native';
import WebView from 'react-native-webview';
function Page(): JSX.Element {
const webRef = useRef(null);
const login = () => {
setTimeout(() => {
if (webRef.current) {