ElementaryProperties constructor

const ElementaryProperties({
  1. Brightness? forzeThemeMode,
  2. Configuration components = const Configuration(),
  3. Configuration fundations = const Configuration(),
  4. ScrollPhysics physics = const ClampingScrollPhysics(),
  5. double minScaleFactor = 0.5,
  6. double maxScaleFactor = 1.2,
})

Creates a ElementaryProperties tha's used to configure ElementaryUI

The forzeThemeElementaryMode will be used to set the theme, if you dont pass it, the system default setting is used fallback is light

Implementation

const ElementaryProperties({
  this.forzeThemeMode,
  Configuration components = const Configuration(),
  Configuration fundations = const Configuration(),
  this.physics = const ClampingScrollPhysics(),
  this.minScaleFactor = 0.5,
  this.maxScaleFactor = 1.2,
})  : _fundations = fundations,
      _components = components;