Kebbin
02/16/2022, 12:44 PMKirill Grouchnikov
02/16/2022, 1:14 PMKebbin
02/16/2022, 9:55 PMSurface(){
MenuBar(){
Menu(){
Item()
Item()
}
}
StatusBar(){
Left(){
Item()
Item()
}
Right(){
Item()
}
}
}
Otherwise I can soon build another Surface or Box and fill it with text objects, etc.
Unless there's a better suggestion you could give me to build it with? I'm still learning! ππ
Thanks! Cheers.Kebbin
02/16/2022, 9:58 PMDavid W
02/16/2022, 10:01 PMDavid W
02/16/2022, 10:02 PMKebbin
02/16/2022, 10:02 PMDavid W
02/16/2022, 10:03 PMKebbin
02/16/2022, 10:03 PMKebbin
02/16/2022, 10:04 PMDavid W
02/16/2022, 10:04 PMKebbin
02/16/2022, 10:04 PMDavid W
02/16/2022, 10:04 PMDavid W
02/16/2022, 10:07 PMDavid W
02/16/2022, 10:08 PMKebbin
02/16/2022, 10:08 PMKirill Grouchnikov
02/16/2022, 10:08 PMKirill Grouchnikov
02/16/2022, 10:10 PMDavid W
02/16/2022, 10:10 PMDavid W
02/16/2022, 10:10 PMKirill Grouchnikov
02/16/2022, 10:12 PMDavid W
02/16/2022, 10:14 PMText
is part of material-desktop
, and Aurora would have its own Text
componentKirill Grouchnikov
02/16/2022, 10:17 PMButton
is a shell with slots for `Icon`s, `Text`s and pretty much anything else (I guess you can put a button inside a button inside a checkbox, etc). In Aurora it is a more traditional approach where you can provide icons, texts, etc that are "relevant" to the specific components, but not as child composables. So there's AuroraLabel
, AuroraButton
, AuroraTextField
etc. But not directly available to app code. All these composables are internal, and you work with content models, presentation models and projections that abstract away specific composables. See https://github.com/kirill-grouchnikov/aurora/blob/icicle/docs/component/Intro.md for more.David W
02/16/2022, 10:23 PMKebbin
02/16/2022, 11:07 PM