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
- Host: GitHub
- URL: https://github.com/karimkawambwa/roku-framework
- Owner: karimkawambwa
- Created: 2015-06-09T00:16:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-07-28T19:20:33.000Z (over 6 years ago)
- Last Synced: 2024-08-07T23:55:34.635Z (8 months ago)
- Language: Brightscript
- Size: 23.5 MB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-video - karimkawambwa/roku-framework - Roku app framework to make app creation easier and structured. Under construction - karimkawambwa/roku-framework (Video Players & Playback Libraries / Frameworks & UI Components)
README
# roku-framework
Roku app framework to make app creation easier and structured. Under constructionExample 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 :)