Skip to content

Instantly share code, notes, and snippets.

View roremdev's full-sized avatar
🚀
Deploying amazing ideas

Emmanuel Rodríguez roremdev

🚀
Deploying amazing ideas
View GitHub Profile
### Keybase proof
I hereby claim:
* I am roremdev on github.
* I am roremdev (https://keybase.io/roremdev) on keybase.
* I have a public key ASAzsdEaftmit05VRBZfi4cBwhTxjeqncZRqNjwCgJfebgo
To claim this, I am signing this object:
@roremdev
roremdev / API.yaml
Created April 2, 2022 15:51
Open API Example
openapi: 3.0.0
info:
version: 0.1.0
title: Agora
license:
name: MIT
url: 'https://github.com/Three-Points/Agora/blob/development/markdown/license.md'
x-logo:
url: 'https://raw.githubusercontent.com/Three-Points/Agora/development/src/assets/logo.svg'
description: |
@roremdev
roremdev / main.dart
Created June 30, 2020 19:48
Flutter tutorial documentation
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {