This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Udacity , 1 mes gratis de cualquier Nanodegree. | |
* Requiere VPN y Tarjeta de Credito , no olvidar cancelar si no se termina el workshop | |
https://www.udacity.com/courses/all | |
Pluralsight, Conferencias Gratis | |
* Requiere crear cuenta | |
https://learn.pluralsight.com/conference-offers/2020/conferences | |
Packtpub, Free Workshops | |
* requiere usar el codigo PACKTFREE , se puede usar en todos los workshops |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class LoginScreen extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
MediaQueryData mdq = MediaQuery.of(context); | |
print(mdq.size.height); | |
print(mdq.size.width); | |
if(mdq.orientation == Orientation.portrait){ | |
return Scaffold( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(MainApp()); | |
class MainApp extends StatefulWidget { | |
@override | |
_MainAppState createState() => _MainAppState(); | |
} | |
class _MainAppState extends State<MainApp> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import socket | |
import select | |
import time | |
import os | |
try: | |
# for Python2 | |
from Tkinter import * | |
except ImportError: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.android.culqi.culqi_android.Culqi; | |
import android.content.Context; | |
import android.util.Log; | |
import com.android.volley.AuthFailureError; | |
import com.android.volley.DefaultRetryPolicy; | |
import com.android.volley.Request; | |
import com.android.volley.RequestQueue; | |
import com.android.volley.Response; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:testproject/theme.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/widgets.dart'; | |
void main() { | |
runApp(MaterialApp( | |
theme: theme, | |
home: ChildWidget(), | |
)); | |
} |