Skip to content

Instantly share code, notes, and snippets.

View OdaFra's full-sized avatar
🚀
Fluttering

Oscar OdaFra

🚀
Fluttering
View GitHub Profile
@Klerith
Klerith / flutter-instalaciones.md
Last active May 1, 2024 04:57
Instalaciones del curso de Flutter - Móvil de cero a experto
@Klerith
Klerith / tarea-pg-admin.md
Last active April 16, 2024 14:01
Tarea sobre PGAdmin y Postgres

Docker Hub images

Postgres

pgAdmin

1. Crear un volumen para almacenar la información de la base de datos

docker COMANDO CREAR postgres-db

2. Montar la imagen de postgres así

OJO: No hay puerto publicado -p, lo que hará imposible acceder a la base de datos con TablePlus

@fredgrott
fredgrott / launch.json
Created June 7, 2021 21:10
vscode example launch.json for flutter dev
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// per dart-flutter extensions directions at: https://dartcode.org/docs/launch-configuration/
//
// although one can, NEVER EVER put any define args in these launch configs as it's
// too easy to by mistake include private keys and have them end up in the
// git repo.
//
@felangel
felangel / main.dart
Last active March 26, 2024 04:42
Bloc with SearchDelegate
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:bloc/bloc.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {