Como remover o espaço entre dois BoxLayouts em Kivy?

0

Pergunta

Posso afirmar que eu já leu as respostas de outros usuários para esta questão, mas nenhum deles me ajudou. Estou tentando programar uma calculadora em python com o kivy interface GUI,ele problema é que eu não consigo remover esse espaço destacado em vermelho na foto aqui em baixo. Eu já tentei com: size_hint: None,None e size:root.size[0], "5dp" para dimensionar o BoxLayouts mas não funcionou

         [1]: https://i.stack.imgur.com/y1ZwF.png


  BoxLayoutExample:
<BoxLayoutExample>:
    orientation: "vertical"
    Label:
        text: "0"
        font_size: "30dp"
    BoxLayout:
        orientation: "horizontal"
        Button:
            text: "7"
            size_hint: .1, .3
        Button:
            text: "4"
            size_hint: .1, .3
        Button:
            text: "1"
            size_hint: .1, .3

    BoxLayout:
        orientation: "horizontal"
        Button:
            text: ","
            size_hint: .1, .3
        Button:
            text: "0"
            size_hint: .1, .3
        Button:
            text: "="
            size_hint: .1, .3
       
calculator interface kivy python
2021-11-23 20:37:05
1

Melhor resposta

0

O seu problema é que você está definindo size_hint os Botões em relação ao seu pai BoxLayout. Assim, o seu efeito na BoxLayout estão ocupando 1/3 do espaço disponível (porque há três widgets na BoxLayoutExample.

Aqui está como corrigir:

<BoxLayoutExample>:
    orientation: "vertical"

    Label:
        text: "0"
        font_size: "30dp"
        size_hint: 1, .8

    BoxLayout:
        orientation: "horizontal"
        size_hint: 1, .1
        Button:
            text: "7"
        Button:
            text: "4"
        Button:
            text: "1"

    BoxLayout:
        orientation: "horizontal"
        size_hint: 1, .1
        Button:
            text: ","
        Button:
            text: "0"
        Button:
            text: "="

Ajustar o tamanho do Label e o BoxLayout de acordo

2021-11-23 23:34:56

Em outros idiomas

Esta página está em outros idiomas

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................