MCPcopy Create free account
hub / github.com/NV404/gova / PaddingV

Method PaddingV

modifier.go:120–128  ·  view source on GitHub ↗

PaddingV sets vertical padding (top + bottom).

(v float32)

Source from the content-addressed store, hash-verified

118
119// PaddingV sets vertical padding (top + bottom).
120func (n *viewNode) PaddingV(v float32) *viewNode {
121 p := n.modifier.padding
122 if p == nil {
123 p = &paddingModifier{}
124 }
125 p.top, p.bottom = v, v
126 n.modifier.padding = p
127 return n
128}
129
130func (n *viewNode) PaddingTop(v float32) *viewNode {
131 p := n.modifier.padding

Callers 5

main.goFile · 0.80
chipRowFunction · 0.80
todoRowFunction · 0.80
main.goFile · 0.80
main.goFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected