ltk

Function separator

Source
pub fn separator() -> Separator
Expand description

Create a default Separator (theme divider colour, 1 px thickness).

column()
    .push( text( "Section A" ) )
    .push( separator() )
    .push( text( "Section B" ) )
.into()