Skip to content

Instantly share code, notes, and snippets.

View valterh4ck3r's full-sized avatar
🏠
Working from home

Valter Negreiros valterh4ck3r

🏠
Working from home
View GitHub Profile
@valterh4ck3r
valterh4ck3r / MainActivity.kt
Created August 12, 2019 17:44
Facebook MainActivity Flutter Kotlin
package com.dvitsolutions.staffdoc
import android.os.Bundle
import io.flutter.app.FlutterActivity
import io.flutter.plugins.GeneratedPluginRegistrant
import com.facebook.FacebookSdk;
import androidx.multidex.MultiDex;
import com.google.android.gms.common.util.IOUtils.toByteArray
import android.content.pm.PackageManager
@valterh4ck3r
valterh4ck3r / clear_xcode_cache.sh
Last active October 16, 2019 18:12
Clear XCode Cache
sudo rm -rf ~/Library/Developer/Xcode/DerivedData/
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:firebase_dynamic_links/firebase_dynamic_links.dart';
final FirebaseAuth _auth = FirebaseAuth.instance;
final GoogleSignIn _googleSignIn = GoogleSignIn();
class SignInPage extends StatefulWidget {
@valterh4ck3r
valterh4ck3r / deploy_multiple_angular_app.txt
Last active May 23, 2019 15:01
How to Deploy Multiple Angular Application
Link de Referência : https://medium.com/@michael.warneke/hosting-multiple-angular-apps-on-firebase-fb15e2a9dda9
Linha de Comando : ng build --prod --baseHref=appname --aot=true
Firebase Hosting : firebase.json
{
"hosting": {
"public": "public",
"ignore": [
@valterh4ck3r
valterh4ck3r / bottom_sheet.dart
Created May 3, 2019 14:20
Bottom Sheet Example
//Flutter Modal Bottom Sheet
//Modified by Suvadeep Das
//Based on https://gist.github.com/andrelsmoraes/9e4af0133bff8960c1feeb0ead7fd749
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
const Duration _kBottomSheetDuration = const Duration(milliseconds: 200);
@valterh4ck3r
valterh4ck3r / estados.java
Created April 29, 2019 19:46
Estado do Brasil
static String nomesEstados[]={"Acre","Alagoas","Amapá","Amazonas","Bahia","Ceará","Distrito Federal","Espírito Santo","Goiás","Maranhão","Mato Grosso","Mato Grosso do Sul","Minas Gerais","Pará","Paraíba","Paraná","Pernambuco","Piauí","Rio de Janeiro","Rio Grande do Norte","Rio Grande do Sul","Rondônia","Roraima","Santa Catarina","São Paulo","Sergipe","Tocantins"};
@valterh4ck3r
valterh4ck3r / bottom_navigation_with_tab_bar_screen.dart
Created April 27, 2019 17:12 — forked from DeyvidJLira/bottom_navigation_with_tab_bar_screen.dart
Create screen in the Flutter with TabBar in only one of the item of the bottom navigation bar.
import 'package:flutter/material.dart';
class TabBarWithBottomNavigationScreen extends StatefulWidget {
@override
_TabBarWithBottomNavigationScreenState createState() => _TabBarWithBottomNavigationScreenState();
}
class _TabBarWithBottomNavigationScreenState extends State<TabBarWithBottomNavigationScreen> with SingleTickerProviderStateMixin {
import 'package:flutter/material.dart';
import 'dart:math' as math;
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
@valterh4ck3r
valterh4ck3r / firebase-locally-network.sh
Created April 6, 2019 04:54
Deploy Firebase Locally Network
firebase serve -o 0.0.0.0
@valterh4ck3r
valterh4ck3r / jquery.maskMoney.min.js
Created April 6, 2019 04:43
JQuery Mask Money 3.1.1
/*
* jquery-maskmoney - v3.1.1
* jQuery plugin to mask data entry in the input text in the form of money (currency)
* https://github.com/plentz/jquery-maskmoney
*
* Made by Diego Plentz
* Under MIT License
*/
!function($){"use strict";function e(e,t){var n="";return e.indexOf("-")>-1&&(e=e.replace("-",""),n="-"),e.indexOf(t.prefix)>-1&&(e=e.replace(t.prefix,"")),e.indexOf(t.suffix)>-1&&(e=e.replace(t.suffix,"")),n+t.prefix+e+t.suffix}function t(e,t){return t.allowEmpty&&""===e?"":t.reverse?a(e,t):n(e,t)}function n(t,n){var a,i,o,l=t.indexOf("-")>-1&&n.allowNegative?"-":"",s=t.replace(/[^0-9]/g,"");return a=r(s.slice(0,s.length-n.precision),l,n),n.precision>0&&(i=s.slice(s.length-n.precision),o=new Array(n.precision+1-i.length).join(0),a+=n.decimal+o+i),e(a,n)}function a(t,n){var a,i=t.indexOf("-")>-1&&n.allowNegative?"-":"",o=t.replace(n.prefix,"").replace(n.suffix,""),l=o.split(n.decimal)[0],s="";if(""===l&&(l="0"),a=r(l,i,n),n.precision>0){var c=o.split(n.decimal);c.length>1&&(s=c[1]),a+=n.deci