~josephjamesmills/+junk/americanFootball_api_stuff

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import QtQuick 2.0
import QtQuick.Window 2.0
import QtQuick.Controls 1.0
import "Models/nfl.com"
TabView {
    id:frame
    anchors.fill: parent
    Tab {
        id: controlPage
        title: "Nfl.Com"
        ScoreStrip{
            id: scoreStrip
            w: Screen.width
            h: Screen.height    / 5
            cellHeight: h / 2
            cellWidth: w / 7
            backgroundColor: "#88C7C7C7"
        }
    }
    Tab {
        title: "Espn"
        GameVideo{
            id: gameVideo
            w: Screen.width
            h: Screen.height    / 3
            cellHeight: h
            cellWidth: w / 3
            backgroundColor: "#88C7C7C7"
        }
    }
    Tab {
        title: "Fanatsy"
        RecentNews{
            w: Screen.width
            h: Screen.height / 3
            cellHeight: h / 7
            cellWidth: w
            backgroundColor: "#88C7C7C7"
        }
    }
}