Borya-Goldarb commited on
Commit
0cdd4db
·
verified ·
1 Parent(s): d22edd1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -32,6 +32,13 @@ def main():
32
 
33
  # Checkbox
34
  option1 = st.checkbox("Functionality problems", value=False)
 
 
 
 
 
 
 
35
  option2 = st.checkbox("Special tax area", value=False)
36
  # special parameters free text
37
  user_input = st.text_input("Enter special parameters of the building:")
 
32
 
33
  # Checkbox
34
  option1 = st.checkbox("Functionality problems", value=False)
35
+ col_2_1, col_2_2 = st.columns([1, 4])
36
+ with col_2_1:
37
+ option1 = st.checkbox("Functionality problems", value=False)
38
+ with col_2_2:
39
+ if option1:
40
+ option1_text_input_value = st.text_input("Text Box")
41
+
42
  option2 = st.checkbox("Special tax area", value=False)
43
  # special parameters free text
44
  user_input = st.text_input("Enter special parameters of the building:")