stylesheet method

AppBuilder stylesheet(
  1. String path
)

Injects a global <link rel="stylesheet"> tag.

Use this for CSS that is not colocated with any specific component — resets, global variables, typography, layout primitives. Component-specific styles belong in Component.styles.

Implementation

AppBuilder stylesheet(String path) {
  _stylesheets.add(path);
  return this;
}