diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-20 10:40:47 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-20 10:40:47 +0800 |
commit | 4c76e05384f3fb01f8870bd6b8d506015ecbf551 (patch) | |
tree | 1d3281b192caf757cce18eeab6d8a71871775bcc /Course/Detail | |
parent | a4ce0b667ca2ef1ce8925496f1b06203c6d071b5 (diff) |
Video play button
Diffstat (limited to 'Course/Detail')
-rw-r--r-- | Course/Detail/Classic.ui.qml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Course/Detail/Classic.ui.qml b/Course/Detail/Classic.ui.qml index 2545e69..9d634c9 100644 --- a/Course/Detail/Classic.ui.qml +++ b/Course/Detail/Classic.ui.qml @@ -169,7 +169,21 @@ Flickable { width: image.width height: image.height radius: 10 - } + } + } + } + + Button { + anchors.centerIn: image + display: AbstractButton.IconOnly + flat: true + width: 44 + height: 44 + icon { + width: 44 + height: 44 + color: "#ffffff" + source: "../../Font-Awesome/svgs/solid/circle-play.svg" } } |