Category Archives: IONIC

Configurar ambiente react native

Passo 1: Baixar e instalar o jdkBaixar e instalar o node.jsBaixar e instalar o Android Studio Passo 2: Instalar o React Native globalmente npm install -g react-native-cli Passo 3: Configurar as variáveis de ambiente no windows: Variáveis: JAVA_HOME e ANDROID_HOME

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> IONIC, React Native | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , , , | Leave a comment

Limpar Cache NPM

Por vezes o NPM acumula cache e dá erros como “npm ERR! Unexpected end of JSON input while parsing near”. Ideal limpar o cache e executar novamente o mesmo comando. Comando Clear Cache npm cache clean –force

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> IONIC | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> | Leave a comment

Evento Drag Drop no Input (onDrop) (drop)

Como prevenir evento drag drop no input? <input type=”text” (drop)=”onDrop($event)”></div> export class DropComponent { onDrop(event) { event.preventDefault(); } } prevent drag in input Angular 5

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Angular 5, AngularJS, IONIC, JavaScript | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , | Leave a comment

Push Envio de Notificação Firebase Para Usuário Específico

Há em nossas aplicações mobile sempre a necessidade de enviar notificações push aos usuários dos nossos app. O Google vem mudando recentemente o GCM para FCM (Firebase Cloud Messassing). Neste post mostro como realizar o envio através do PostMan. Você irá enviar um POST para a URL https://fcm.googleapis.com/fcm/send Atribuir o Content-Type application/json Atribuir o Authorization […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> Dicas, IONIC, PHP | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , , , , , | Leave a comment