~josephjamesmills/+junk/americanFootball_api_stuff

« back to all changes in this revision

Viewing changes to Models/cbs/HomeScreen.qml

  • Committer: Joseph Mills
  • Date: 2013-12-15 15:25:28 UTC
  • Revision ID: josephjamesmills@gmail.com-20131215152528-vke40bcaabivhpm9
for dude to pull stuff out

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import "Api"
 
3
import QtQuick.Window 2.0
 
4
Item {
 
5
    width: Screen.width
 
6
    height: Screen.height
 
7
    ListView{
 
8
        width: parent.width
 
9
        height: parent.height
 
10
        spacing: 0
 
11
        cacheBuffer: 1000
 
12
        contentHeight: 24
 
13
        contentWidth: 5
 
14
        model: HomeRss{}
 
15
        delegate: Item {
 
16
            width: parent.width
 
17
            height: parent.height
 
18
            Text {
 
19
                id: name
 
20
                text: title
 
21
                color: "white"
 
22
            }
 
23
        }
 
24
    }
 
25
}