Excellent! If something in kernel config is missing, I expect that you
could use Xperia 10 as a base to check the settings or for Xperia XZ2 used
by me at
https://github.com/sailfishos-sony-tama/android_kernel_sony_msm/blob/hybris-sony-aosp-9.0.0-4.9-tama-sony/arch/arm64/configs/aosp_tama_akari_def
I must be possible to do, but maybe my head is just wired wrong - well, I do
have that one paper already, so... :D
How to have a SilicaListView with a SearchField inside a Dialog with a
DialogHeader and a menu, where the SearchField is below the DialogHeader,
the list starts below both?
Every
Hi,
did you try extraContent?
https://sailfishos.org/develop/docs/silica/qml-sailfishsilica-sailfish-silica-dialogheader.html/#extraContent-prop
lG, Michael.
On Samstag, 4. Jänner 2020 16:00:29 CET Thomas Tanghus wrote:
> I must be possible to do, but maybe my head is just wired wrong - well, I
On Saturday, 4 January 2020 16.04 Michael Fuchs wrote:
> did you try extraContent?
> > Dialog {
> > SilicaListView {
> > PullDownMenu { /* MenuItems */ }
> > header: DialogHeader {
> > id: dialogHeader
> > }
> > SearchField {
> > parent:
On Saturday, 4 January 2020 16.10 Thomas Tanghus wrote:
> Yes. Annoyingly DialogHeader.extraContent doesn't work like e.g.
> ListView.header/footer, so the above was how I tried.
Forgot to write that it resulted in the search field being *inside* the
header, which is somewhat logical, but not wha
How about this?
Dialog {
SilicaListView {
anchors.fill: parent
PullDownMenu { /* MenuItems */ }
header: Column {
width: parent.width
DialogHeader {
title: "Title"
}
SearchField {
width: par
On Saturday, 4 January 2020 17.54.19 CET you wrote:
> How about this?
>
> Dialog {
> SilicaListView {
> anchors.fill: parent
> PullDownMenu { /* MenuItems */ }
> header: Column {
> width: parent.width
> DialogHeader {
> tit