Documentation

Trace: Panel styles

(flutterui)

Panel styles

This is an old revision of the document!


If you create custom components it's often the case that your custom component extends a Panel (container) and you add sub components. If you want to show a border around your Panel, it's tricky if you want the same border as usual in the flutter app. The color is specific and also the border radius.

If you want to set the standard border, just use the following in your application:

Style.addStyleNames(panel, "f_standard_border");

Next, if your component should look like an editor, you need the same background color. It's possible to set a fixed color, but this color won't look nice in other technologies? To be technology independent, simply use another style:

Style.addStyleNames(panel, "f_standard_border", "f_default_editorbackground");
This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information