Skip to content

Instantly share code, notes, and snippets.

View Maik3345's full-sized avatar
🎯
Focusing

Maik Restrepo Maik3345

🎯
Focusing
  • PuntosColombia
  • Medellin
View GitHub Profile
@Klerith
Klerith / plugins.md
Last active March 28, 2025 19:16
Flutter: Curso de Flutter - Instalaciones recomendadas

Programas

git config --global user.name "Tu nombre"
git config --global user.email "Tu correo"
@tomasznguyen
tomasznguyen / App.tsx
Last active January 2, 2025 18:45
When adding Google Maps to your react application using the library @react-google-maps/api, you run into issues when having multiple components loading a map. In this gist you'll find a component and a hook to resolve these issues and to simplify integrating the library in your application.
import React, { FC } from 'react';
import { GoogleMap } from '@react-google-maps/api';
import { useGoogleMaps } from './GoogleMapsProvider';
const containerStyle = {
width: '400px',
height: '400px'
};
const center = {