summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/Media/fm.qml
blob: b5f3ad1c8c725ab7bf0890db58813d1d3ab3426f (plain)
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
43
44
45
46
import QtQuick 2.0
import "../../Components"
import "../../Layouts"

MediaLayout {
    header: "FM"

    Flickable {
        width: 700
        height: 50
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.bottom: parent.bottom
        anchors.bottomMargin: 80
        contentHeight: height
        contentWidth: row.width
        clip: true

        RadioButtonGroup {
            width: row.width
            height: row.height
            Row {
                id: row
                spacing: 8

                RadioButton {
                    text: "Button"
                }
                RadioButton {
                    text: "Button"
                }
                RadioButton {
                    text: "Button"
                }
                RadioButton {
                    text: "Button"
                }
                RadioButton {
                    text: "Button"
                }
                RadioButton {
                    text: "Button"
                }
            }
        }
    }
}