Skip to content

Instantly share code, notes, and snippets.

View aragrevo's full-sized avatar
:octocat:
Ready

Eduardo Vergara aragrevo

:octocat:
Ready
View GitHub Profile
# Load Angular CLI autocompletion.
source <(ng completion script)
# ----------------------
# Git Command Aliases
# ----------------------
alias gadda='git add .'
alias gpush='git push'
alias gpull='git pull'
@aragrevo
aragrevo / flutter_extension_methods.dart
Created July 2, 2023 12:59 — forked from SashaKryzh/flutter_extension_methods.dart
List of my favorite extension methods in Flutter.
import 'package:flutter/material.dart';
extension BuildContextExtensions on BuildContext {
ThemeData get theme => Theme.of(this);
TextTheme get textTheme => theme.textTheme;
ColorScheme get colorScheme => theme.colorScheme;
DefaultTextStyle get defaultTextStyle => DefaultTextStyle.of(this);
@aragrevo
aragrevo / init-rn.md
Created June 19, 2021 20:14 — forked from Klerith/init-rn.md
Comando para crear aplicación de React Native con TypeScript

Comando para crear un proyecto de RN con TS

npx react-native init AwesomeTSProject --template react-native-template-typescript