Skip to content

Instantly share code, notes, and snippets.

View orodrigogo's full-sized avatar
🚀
learning something new...

Rodrigo Gonçalves orodrigogo

🚀
learning something new...
View GitHub Profile
@VeraZab
VeraZab / LocalNotifications.js
Last active February 26, 2023 23:26
Simple local notification with Expo
import React, {Component} from 'react';
import {TextInput, View, Keyboard} from 'react-native';
import {Constants, Notifications, Permissions} from 'expo';
export default class Timer extends Component {
onSubmit(e) {
Keyboard.dismiss();
const localNotification = {
title: 'done',
@eveningkid
eveningkid / react-native-reanimated-drag-sort_apple-music.jsx
Last active June 25, 2024 14:31
React Native Reanimated 2 Multiple Drag and Sort: Apple Music Example
// Expo SDK40
// expo-blur: ~8.2.2
// expo-haptics: ~8.4.0
// react-native-gesture-handler: ~1.8.0
// react-native-reanimated: ^2.0.0-rc.0
// react-native-safe-area-context: 3.1.9
import React, { useState } from 'react';
import {
Image,
@orodrigogo
orodrigogo / vscode-settings.json
Last active May 17, 2024 11:24
Configurações do meu VSCode.
{
// EDITOR
"editor.fontFamily": "Fira Code",
"editor.wordWrap": "on",
"editor.fontSize": 22,
"editor.lineHeight": 38,
"editor.tabSize": 2,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.minimap.enabled": false,