Skip to content

Instantly share code, notes, and snippets.

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

Neat Fastro NeatFastro

🏠
Working from home
View GitHub Profile
[
{
"code": "ac_refrigeration_repair",
"value": 7623,
"name": "A/C, Refrigeration Repair"
},
{
"code": "accounting_bookkeeping_services",
"value": 8931,
"name": "Accounting/Bookkeeping Services"
@dahabit
dahabit / ios_clean.sh
Last active February 26, 2022 23:03
Shell file that clean any Pods or Flutter dependencies before build
#!/bin/sh
echo "========== Cleanup start =========="
rm -Rf ios/Pods
rm -Rf ios/.symlink
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec
rm -rf ios/Podfile.lock
rm -rf ~/Library/Developer/Xcode/DerivedData/* -y
rm -rf pubspec.lock
flutter clean
@rodydavis
rodydavis / flutter_gmail_clone.dart
Created May 29, 2020 22:44
Flutter Gmail Clone
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'dart:math' as math;
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@Albejr
Albejr / firebase-message
Last active March 7, 2024 19:26
Localize Firebase error messages in PT-BR
catchError(err => {
const errorCode = err.code;
let errorMessage = this.VerifyErroCode(errorCode);
if (errorMessage == null) {
errorMessage = err.message;
}
console.log(errorMessage);
})