Skip to content

Instantly share code, notes, and snippets.

View DirleiDionisio's full-sized avatar

Dirlei Dionísio DirleiDionisio

View GitHub Profile
@chmiiller
chmiiller / rating.js
Last active March 14, 2017 22:50
A draggable and swipeable 5 stars rating view for Android and iOS
var win = Ti.UI.createWindow({
backgroundColor:'#eeeeee'
});
var isAndroid = Ti.Platform.osname == "android";
var starSelectedImage = '/images/ic_star_black.png';
var starOriginalImage = '/images/ic_star_border_black.png';
//icons from Google Material Design (search for the "star" icon): https://design.google.com/icons/
var starWidth = 28;
var coverView = Ti.UI.createView();