build method
Describes the part of the user interface represented by this widget.
The framework calls this method when this widget is inserted into the tree in a given BuildContext and when the dependencies of this widget change (e.g., an InheritedWidget referenced by this widget changes). This method can potentially be called in every frame and should not have any side effects beyond building a widget.
The framework replaces the subtree below this widget with the widget returned by this method, either by updating the existing subtree or by removing the subtree and inflating a new subtree, depending on whether the widget returned by this method can update the root of the existing subtree, as determined by calling Widget.canUpdate.
Typically implementations return a newly created constellation of widgets that are configured with information from this widget's constructor and from the given BuildContext.
The given BuildContext contains information about the location in the tree at which this widget is being built. For example, the context provides the set of inherited widgets for this location in the tree. A given widget might be built with multiple different BuildContext arguments over time if the widget is moved around the tree or if the widget is inserted into the tree in multiple places at once.
The implementation of this method must only depend on:
- the fields of the widget, which themselves must not change over time, and
- any ambient state obtained from the
context
using BuildContext.dependOnInheritedWidgetOfExactType.
If a widget's build method is to depend on anything else, use a StatefulWidget instead.
See also:
- StatelessWidget, which contains the discussion on performance considerations.
Implementation
@override
widgets.Widget build(widgets.BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 21.75C19.6234 21.75 21.75 19.6234 21.75 17V7C21.75 4.37665 19.6234 2.25 17 2.25H7C4.37665 2.25 2.25 4.37665 2.25 7V17C2.25 19.6234 4.37665 21.75 7 21.75H17ZM15.25 16C15.25 16.4142 15.5858 16.75 16 16.75C16.4142 16.75 16.75 16.4142 16.75 16V12C16.75 11.5858 16.4142 11.25 16 11.25C15.5858 11.25 15.25 11.5858 15.25 12V16ZM16 9.75977C15.5858 9.75977 15.25 9.42398 15.25 9.00977V8.99977C15.25 8.58555 15.5858 8.24977 16 8.24977C16.4142 8.24977 16.75 8.58555 16.75 8.99977V9.00977C16.75 9.42398 16.4142 9.75977 16 9.75977ZM6.29796 15.7365C6.15252 16.1243 6.34902 16.5566 6.73686 16.702C7.1247 16.8475 7.55701 16.651 7.70245 16.2631L8.64495 13.7498H11.3555L12.298 16.2631C12.4434 16.651 12.8757 16.8475 13.2635 16.702C13.6514 16.5566 13.8479 16.1243 13.7024 15.7365L10.7024 7.73645C10.5927 7.44373 10.3128 7.2498 10.0002 7.2498C9.68757 7.2498 9.40773 7.44373 9.29796 7.73645L6.29796 15.7365ZM10.0002 10.1358L10.793 12.2498H9.20745L10.0002 10.1358Z" fill="currentColor"/>
</svg>
''',
colorFilter:
color != null ? widgets.ColorFilter.mode(color!, widgets.BlendMode.srcIn) : null,
width: width,
height: height,
);