File size: 1,829 Bytes
7798609
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
'''
title: Row Layout
'''

import streamsync as ss

ss.md("## ss.row Row Layout")

ss.space()
ss.md("#### πŸ”… Example")
ss.write("Use ss.row to constrain two buttons to display on the same line, while using ss.spacer to adjust the layout of the buttons.")

ss.space()

def onchange1():
    pass
    

#ui

style = "background:#d3d3d354; padding:5px;"

ss.space()
ss.write("#### 1. Normal")
ss.space()
with ss.row(style=style):
    ss.button("button1")
    ss.button("button2")

ss.space()
ss.write("#### 2. Center")
ss.space()
with ss.row(style=style):
    ss.spacer()
    ss.button("button1")
    ss.button("button2")
    ss.spacer()
    
ss.space()
ss.write("#### 3. Right align")
ss.space()
with ss.row(style=style):
    ss.spacer()
    ss.button("button1")
    ss.button("button2")
    
ss.space()
ss.write("#### 4. Right respectively")
ss.space()
with ss.row(style=style):
    ss.spacer()
    ss.button("button1")
    ss.spacer()
    ss.button("button2")

    
ss.space("mt-16")
ss.write("#### πŸ”Ž Code")

ss.md('''
```python
import simplestart as ss

style = "background:#d3d3d354; padding:5px;"
ss.space()
ss.write("#### 1. Normal")
ss.space()
with ss.row(style=style):
    ss.button("button1")
    ss.button("button2")

ss.space()
ss.write("#### 2. Center")
ss.space()
with ss.row(style=style):
    ss.spacer()
    ss.button("button1")
    ss.button("button2")
    ss.spacer()
    
ss.space()
ss.write("#### 3. Right align")
ss.space()
with ss.row(style=style):
    ss.spacer()
    ss.button("button1")
    ss.button("button2")
    
ss.space()
ss.write("#### 4. Right respectively")
ss.space()
with ss.row(style=style):
    ss.spacer()
    ss.button("button1")
    ss.spacer()
    ss.button("button2")

''')

ss.md('''
::: tip
  ss.space adds spacing, while ss.spacer is used to fill gaps to modify the layout.
:::
''')