Tema | Jorge “Tuto” Quiroga | Rodrigo Paz |
---|---|---|
Modelo económico | Libre mercado, reducción del Estado, ajuste fiscal ortodoxo. | Capitalismo inclusivo, Estado facilitador, pero eficiente y no burocrático. |
Recuperación económica | Financiamiento externo: US$320 MM del FMI y US$700 MM del FLAR. | No al FMI. Apuesta por usar recursos internos y reducir el gasto estatal ineficiente. |
Formalización laboral | No es prioridad central. |
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
defmodule PollaWeb.GroupsLive.Members do | |
use PollaWeb, :live_view | |
alias Polla.Groups | |
def mount(params, _session, socket) do | |
group = Groups.get_by_slug(params["slug"]) | |
socket = | |
assign(socket, group: group) |
We want to create a new mobile app that will replace our current Flutter app, the main reason is that we want to use the code that is in the current web app.
There are 2 options Svelte Native and Sveltekit & Capacitor both of these options would use svelte but in case of Svelte Native we would be using Native Script which brings new components that are similar to HTML.
- Yuli Yolo SM 2.9 Trailer presets
- Nath Life SM 2.9 DubTrap
- Modern EDM SM 1 Mirko Ruta
- Strangus by Insignia SM 2.9
- Alyn Zahev Individual
- Ufuk Kevser
Add the floowing so all can be a module in package.json
{
"type": "module",
...
Add all necessary packages to package.json
, for example:
resolve: (name) =>
# page
Module
default: clas Features
template: class Pages
pageLayout: class Pages
'''
Videos
- 30 NEW Flutter Tips You Possibly Didn’t Know (PART 2): https://youtu.be/5vDq5DXXxss
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 'dart:async'; | |
void main() { | |
var duration = Duration(milliseconds: 500); | |
var t = Timer.periodic(duration, (Timer t) { | |
print('Update ${t}'); | |
}); | |
print(t.isActive); |
NewerOlder