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
Ext.define('nombreDeMiApp.view.Main', { | |
extend: 'Ext.Container', | |
xtype: 'main', | |
requires: [ | |
'Ext.TitleBar', | |
], | |
config: { | |
items: [ | |
{ |
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 mobi.revolucion.listabasica; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.view.Menu; | |
import android.view.MenuItem; | |
import android.view.View; | |
import android.widget.AdapterView; | |
import android.widget.ListView; | |
import android.widget.Toast; |
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
<!DOCTYPE html> | |
<html ng-app='holamundo'> | |
<head><meta charset="utf-8"> | |
<title>Mi primera app AngularJS</title> | |
<meta name="viewport" content="width=device-width"> | |
</head> |
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
<div ng-app="holamundo"> | |
<h1> {{ "Mi Aplicación AngularJS #" + 1 |uppercase }}</h1> | |
<script> | |
var miAppAngular = angular.module('holamundo',[]); | |
</script> | |
</div> |
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
<template> | |
<div id="app" class="container"> | |
<main role="main"> | |
<div class="jumbotron"> | |
<div class="container"> | |
<h1 class="display-3">Bootstrap + Vue + Sass</h1> | |
<p> | |
<a | |
class="btn btn-success btn-lg" | |
href="http://vuejs.org" |
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 React, { useState } from "react"; | |
const ContadorDeClicks = () => { | |
const [contador, setContador] = useState(0); | |
const manejarClick = () => { | |
setContador(contador + 1); | |
}; | |
return ( |
OlderNewer