chore: re-export iced row and column
This removes the custom row and column implementations and uses the iced ones directly.
This commit is contained in:
parent
aef328238f
commit
647f81ac59
20 changed files with 103 additions and 227 deletions
|
|
@ -99,7 +99,9 @@ impl cosmic::Application for App {
|
|||
|
||||
let inline = cosmic::widget::inline_input("", &self.input).on_input(Message::Input);
|
||||
|
||||
let column = cosmic::widget::column().push(editable).push(inline);
|
||||
let column = cosmic::widget::column::with_capacity(2)
|
||||
.push(editable)
|
||||
.push(inline);
|
||||
|
||||
let centered = cosmic::widget::container(column.width(200))
|
||||
.width(iced::Length::Fill)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue