mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
68 lines
1.5 KiB
QML
68 lines
1.5 KiB
QML
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import im.nheko 1.0
|
|
|
|
TextField {
|
|
id: input
|
|
|
|
palette: Nheko.colors
|
|
color: Nheko.colors.text
|
|
|
|
Rectangle {
|
|
id: blueBar
|
|
|
|
anchors.top: parent.bottom
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
color: Nheko.colors.highlight
|
|
height: 1
|
|
width: parent.width
|
|
|
|
Rectangle {
|
|
id: blackBar
|
|
|
|
anchors.verticalCenter: blueBar.verticalCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
height: parent.height + 1
|
|
width: 0
|
|
color: Nheko.colors.text
|
|
|
|
states: State {
|
|
name: "focused"
|
|
when: input.activeFocus == true
|
|
|
|
PropertyChanges {
|
|
target: blackBar
|
|
width: blueBar.width
|
|
}
|
|
|
|
}
|
|
|
|
transitions: Transition {
|
|
from: ""
|
|
to: "focused"
|
|
reversible: true
|
|
|
|
NumberAnimation {
|
|
target: blackBar
|
|
properties: "width"
|
|
duration: 500
|
|
easing.type: Easing.InOutQuad
|
|
alwaysRunToEnd: true
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
background: Rectangle {
|
|
color: Nheko.colors.base
|
|
}
|
|
|
|
}
|