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="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0886 29.3442C10.0886 37.3775 16.5607 43.8896 24.5444 43.8896C32.5281 43.8896 39.0001 37.3775 39.0001 29.3442C39.0001 18.4351 24.5444 3.88965 24.5444 3.88965C24.5444 3.88965 10.0886 18.4351 10.0886 29.3442ZM30.3753 33.4584C30.9685 32.6823 32.0749 32.5369 32.8464 33.1335C33.618 33.7302 33.7626 34.8431 33.1693 35.6193L32.9266 35.9369C28.6942 41.4743 20.3947 41.4743 16.1623 35.9369L15.9195 35.6193C15.3264 34.8431 15.4709 33.7302 16.2425 33.1335C17.0141 32.5369 18.1204 32.6823 18.7136 33.4584L18.9564 33.7759C21.7779 37.4675 27.3109 37.4675 30.1325 33.7759L30.3753 33.4584Z" fill="black"/>
</svg>
''',
colorFilter:
color != null ? widgets.ColorFilter.mode(color!, widgets.BlendMode.srcIn) : null,
width: width,
height: height,
);