Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expansion panel #58

Open
plfiorini opened this issue Feb 7, 2017 · 1 comment
Open

Expansion panel #58

plfiorini opened this issue Feb 7, 2017 · 1 comment
Labels
hacktoberfest Hacktoberfest

Comments

@plfiorini
Copy link
Member

https://material.io/guidelines/components/expansion-panels.html#

@plfiorini plfiorini added this to the Post 1.0 milestone Mar 18, 2017
@plfiorini plfiorini added the hacktoberfest Hacktoberfest label Sep 28, 2017
@edips
Copy link

edips commented Dec 22, 2017

This can be used as an alternative for expansion panel. Instead of ChackBox IconBox can be used.

        CheckBox{
            id:check
            height:40
            text:qsTr("Show more")
            checked: false
            }
Rectangle{
    id:narrowrect
    visible: check.checked
    anchors.horizontalCenter: parent.horizontalCenter
    height:50
    width:parent.width
}
Rectangle{
    id:expansionrect
    function visibility(){
    if (check.checked==true){
        return false
        }
    else{
        return true
        }
    }
    visible: visibility()
    anchors.horizontalCenter: parent.horizontalCenter
    height:300
    width:parent.width
    }

pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 10, 2018
@pasdam pasdam mentioned this issue Feb 10, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 10, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue Feb 11, 2018
…e's one, added example with a custom delegate for the summary row
pasdam pushed a commit to pasdam/fluid that referenced this issue Mar 2, 2018
@plfiorini plfiorini modified the milestones: Post 1.0, 1.1.0 Apr 19, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
pasdam pushed a commit to pasdam/fluid that referenced this issue May 27, 2018
@plfiorini plfiorini removed this from the 1.1.0 milestone Jul 5, 2018
@plfiorini plfiorini removed the feature label Oct 13, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hacktoberfest Hacktoberfest
Projects
None yet
Development

No branches or pull requests

2 participants