Hi,
How to change background color/image of SelectionListItem to appropriate my theme?
i tried to add
property alias bg:background.source in the SelectionListItem .qml and it is solved the problem on simulator only
Ram
Hi,
How to change background color/image of SelectionListItem to appropriate my theme?
i tried to add
property alias bg:background.source in the SelectionListItem .qml and it is solved the problem on simulator only
Ram
Hi Ram,
Could you clarify what device are you targeting to?
Br,
Ilkka
I'm targeting N8 which is compatible with symbian components
but the problem is related to my solution because i'm modyfying on the build file "SelectionListItem .qml " which doesn't been packaged with the app
Import the SelectionListItem.qml in your project and rename it to something like MySelectionListItem .qml
replace
import "." 1.1
with
import com.nokia.symbian 1.1
to use your modified component you have to use this:
MySelectionListItem {
}
instead of
SelectionListItem {
}