This file contains 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
var win = Ti.UI.createWindow(); | |
var progress = Ti.UI.createProgressBar({ | |
width:200, | |
min:0, | |
max:1, | |
value:0, | |
tintColor : "red" | |
}); | |
win.add(progress); |
This file contains 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
const { createStore, combineReducers } = Redux; | |
// ACTIONS CONST | |
const ADD_TODO = 'ADD_TODO'; | |
const TOGGLE_TODO = 'TOGGLE_TODO'; | |
const DELETE_TODO = 'DELETE_TODO'; | |
const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER'; | |
// ACTIONS CREATOR | |
// TODOLIST AC |