Skip to content

Instantly share code, notes, and snippets.

View ggazzo's full-sized avatar
:octocat:
:)

Guilherme Gazzo ggazzo

:octocat:
:)
View GitHub Profile
@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) {