An open API service indexing awesome lists of open source software.

https://github.com/karimkawambwa/roku-framework

Roku app framework to make app creation easier and structured. Under construction
https://github.com/karimkawambwa/roku-framework

Last synced: 5 months ago
JSON representation

Roku app framework to make app creation easier and structured. Under construction

Awesome Lists containing this project

README

        

# roku-framework
Roku app framework to make app creation easier and structured. Under construction

Example app that uses this framework https://github.com/kaayr1m/roku-framework-example

Async Http network request can be performed this way :

ahttp("GET",{
url : "http://google.com"
done : function(response as Object)
headers = response.headers
body = response.body

end function
}).fire()

Animating Example:

m.view.children.childWithId("movies").animate({x : 1000}, outBounce, 4, 0, function(completed)

end function)

Setting Focus :

m.view.focusControl.focusOn("view-id")

I will make a better ReadMe and Documentation File :)