Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Unsolved StackView has detected conflicting anchors

    General and Desktop
    2
    2
    1095
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 1
      123456789 last edited by

      where is está o problema?
      Informacion is reduce

      import QtQuick 2.1
      import QtQuick . Layouts 1.0
      import QtQuick.Controls 1.0
      import QtQuick.Layouts 1.0
      import QtQuick.Dialogs 1.1

      //QString nvl= ui->TextField->text();
      ColumnLayout {
      anchors.fill: parent
      anchors.margins: 300
      spacing: 3
      property color mainAppcolor: "#6fda9c"

      Label{
          text: "LOGIN"
          font.pointSize:70
          leftPadding: 90
          width: layout.implicitWidth
      }
      
      ComboBox {
          Layout.fillWidth: true
          model :[ "Nível 1                                      " ,
                   "Nível 2                                      " ,
                   "Nível 3                                      " ,
                   "Nível 4                                      "  ]
      }
      
      TextField {
              id: password_field
              placeholderText: qsTr("Write your password")
              Layout.fillWidth: true
              echoMode: TextInput.Password
          }
      
      Button {
      

      // property var String: 0

         // id: proccessButton0
         Layout.fillWidth: true
      
         onClicked: {
             if(TextField.text=="123"){
             Label.text== "já ";
             }else
               Label.text== "já foste";
         }
      
      
              }
      

      }

      1 Reply Last reply Reply Quote 0
      • mrjj
        mrjj Lifetime Qt Champion last edited by

        Hi
        But normally it says where with a
        File and line number ?

        1 Reply Last reply Reply Quote 1
        • First post
          Last post